Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (69)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (6320)

  • I want my video to crop 720x480 2s then serial crop 5s 1280x720 and so on until the end of the video. The output is a single video. ffmpeg [closed]

    5 décembre 2019, par SON PHAN VAN

    My input is a 1920x1080 video. I want my video to crop 720x480 2s then serial crop 5s 1280x720 and so on until the end of the video. The output is a single video. What should I do with the ffmpeg command.

  • how to change the fps of video during playback of video without restarting video

    8 juin 2018, par Mahek Delawala

    I want to change the fps of video at run time (during the playback of video) without restarting or pausing using ffmpeg. I searched about it in the internet but I am not able to get the command which can change the fps directly without restarting the video but i found ffmpeg command which can create a new file with modified fps as shown below.
    ffmpeg -y -r 20 -i input_file -r 45 output_file
    Is it possible to change fps of video during run time using ffmpeg command ? If yes please provide me the command if not how can i change using c code. Please help me in this issue as early as possible.
    Thank you.

  • Read Audio and Video, edit Video frame, then write back Audio and Video - Using python

    19 avril 2021, par CowKeyMan

    I'm looking to do exactly as the title says, ie :

    


      

    1. Read a file containing both audio and video
    2. 


    3. Edit the video frames individually
    4. 


    5. Write back the video with the new frames but the same exact audio as before
    6. 


    


    OpenCV is not a good option for reading and writing since it doesn't handle audio, altough I can use opencv in step 2.

    


    The language I am using is Python, as this needs to be integrated with a bigger system.

    


    My question is this : What software stack / librarries are appropriate for this kind of task and if anyone can point me to some resources it would be highly appreciated

    


    So far I have found the following options, but would like some feedback on them based on experience :

    


      

    1. ffmpeg
    2. 


    3. MoviePy
    4. 


    5. libav
    6.