Recherche avancée

Médias (91)

Autres articles (61)

  • 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 (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (5324)

  • Updated requirements to Widget Factory 1.9+.

    24 octobre 2012, par Sebastian Tschan

    m README.md Updated requirements to Widget Factory 1.9+.

  • fate/acodec : Fix test requirements

    23 avril 2022, par Andreas Rheinhardt
    fate/acodec : Fix test requirements
    

    This automatically fixes the requirements of the fate-seek-acodec*
    tests (e.g. 16 of the 27 such tests are now automatically disabled
    if the aresample filter is disabled).

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] tests/fate/acodec.mak
  • ffmpeg : cutting 20 seconds of video starting from the middle time in a bash cycle

    12 janvier 2023, par Isabelle

    im in a bash script looping a dir full of .mp4 video files each one with a different lenght.&#xA;Now : how can i cut 20 seconds starting in the exact middle of any video ?&#xA;For a single file i can read manually the duration of the video so i know at what second start cutting : e.g.&#xA;for a 120 sec. video i use

    &#xA;

    ffmpeg -i "tmpfile.mp4" -ss 60 -t 20 -c copy "outputfile.mp4" 2>/dev/null

    &#xA;

    but now the problem is that the "-ss" value should be a variable with the (total lenght of video/2)&#xA;some videos are long less than a minute, some are long many minutes, and some are more than one hour.

    &#xA;

    Thanks

    &#xA;

    Cant find a middle time value to start cutting

    &#xA;