Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (71)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (5575)

  • How to append timecode into metadata using ffmpeg

    8 septembre 2022, par kiran vfx

    We have a request to append output/timecode into metadata starting from frame 0.
It is done in nuke with addtimecode node, starting at frame 0 and timecode as 00:00:00:00 with a prefix of "output"

    


    I'm trying to do it with ffmpeg but nto able to get it :(
I have tried with -metadata output/timecode="00:00:00:00" It didn't work

    


  • Using ffmpeg with not consecutive numbered files

    12 septembre 2014, par lbedogni

    I am using ffmpeg to produce a video starting from a set of png images. However, the images I have are numbered like this :

    image_D5_C0_F4.png
    image_D10_C0_F4.png
    image_D15_C0_F4.png
    image_D20_C0_F4.png

    and so on. Basically, everything remains the same, but the inner part changes. My ffmpeg command looks like this :

    ffmpeg -framerate 8 -start_number 5 -i img/image_%02d_C0_F4.png -c:v libx264 -r 30 -s 1200x900 -pix_fmt yuv420p out.mp4

    but obviously it does not work. I looked into the manual to find an option that allow me to specify a starting number (5 in this case) and a standard increment (again, 5), so to catch 5,10,15,20 etc.

    Any idea on how to solve this ? I know I can handle everything with a script to rename all the files, but I wanted to check whether ffmpeg has the needed option in the first place.

    Thanks

  • Trimming batch of videos using timestamp

    26 février 2021, par Raghav Arora

    I want to cut multiple videos in folder based on their starting and ending time which is stored in a csv file : annotations.csv

    


    The format of the csv file is :

    


    video_name | starting time | ending time

    


    I think the pseudo code may look something like this :

    


    `for i in video_names
 do: cut video according to time frame`


    


    ffmpeg -ss 00:01:00 -i input.mp4 -to 00:02:00 -c copy output.mp4

    


    This is something I found for a single video while hardcoding the input names and start and end time.
How can I make this dynamic to correspond with my annotations file ?