Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (9110)

  • Revision 3798d7a641 : Merge "Re-order mode search in rd."

    22 juillet 2013, par Paul Wilkins

    Merge "Re-order mode search in rd."

  • Frame Number Overlay With FFmpeg syntax

    6 juillet 2020, par DougM

    This has been covered before, and the consensus solution is (minor variations on) the following command line :

    


    ffmpeg -i input.MP4 -vf "drawtext=fontfile=Arial.ttf:text='%{frame_num}':r=25:x=(w-tw)/2:y=h-(2*lh):fontcolor=white:fontsize=50:" -c:a copy output.mp4


    


    Unfortunately, when I apply this to my MP4 files the text that gets placed is "r=25". I've tried every variation that I can think of, but none of them result in a frame number displayed that correlates to the frames.

    


    I know that it is aware of frame numbers because as it runs in the command line it displays the frame number that it's working on :

    


    . . .
frame= 132 fps= 13 q=-1.0 Lsize= 1040kB time=00:00:01.07 bitrate=7913.9kbits/s speed=0.11x
. . .

    


    Can you please help me with the correct syntax for placing the frame number in the video ?

    


  • How do I use ffmpeg to extract frames starting at a specific number ?

    19 octobre 2020, par Gridzbi Spudvetch

    I've decided for some reason to upscale an entire 90-minute movie using AI. Problem is, I have several demo scenes that have already been upscaled, and I want to keep those frames rather than upscaling them again. Basically I want to export frames starting at a specific number, like ffmpeg -i scene1.mp4 scene1/%10d+[starting number].jpg. If the specified number were 1550, for example, the first frame it would export would be 0000001550.jpg. I still want it to start at the first frame of the input video, though ; the only things I want to change are the names of the output files. Is there a way to do this ?