Recherche avancée

Médias (91)

Autres articles (13)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (3346)

  • How is `ffplay` detecting that the sound file from pipe-connected ffmpeg has finished ?

    20 novembre 2017, par Izumi Kawashima

    The following code playes "sample.mp3", and terminates. This is so surprising because the data passed via pipe are binary streams, so ffplay should have no idea about the duration of "sample.mp3", but it terminates right after it reaches the end.

    $ cat sample.mp3 | ffmpeg -i pipe:0 -f mp3 pipe:1 | ffplay -autoexit -

    What binary signal is ffplay watching to detect the terminal of sample.mp3 ?

  • Generate script from Handbrake preset

    11 avril 2018, par cclloyd

    Is it possible to generate a script/command to run from a Handbrake preset or from the queue on OS X ?

    Like take the queue and generate a command I can run in terminal instead of through the GUI ? (Either with ffmpeg or with HandBrakeCLI)

  • I want to generate frames from a CCTV video using FFMPEG and save the frames as the time that they represent

    6 décembre 2014, par Jason Harris

    I am using mac os x terminal.

    So far I have mananaged the following code :

    ffmpeg -i cctvfootage.flv -f image2 -vf fps=fps=1 frames/frame_04d.png    

    The above code creates a frame for every second of the video, but names each frame as frame_0001.png, frame_0002.png, and so on. Although this is helpful, it is not the correct naming structure that I want.

    The date and time that the video footage starts from is 20th November 2014 at 13:46:12.

    The output name I want will be something like frames_20112014_134612.png (frames_DDMMYYYY_HHMMSS) for the first, frames_20112014_134613.png for the second, ect.

    This will then identify each frame as the day and time that the image is taken from.