Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (62)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (9462)

  • vc2enc : zero padding of the coefficient buffer

    17 décembre 2019, par Lynne
    vc2enc : zero padding of the coefficient buffer
    

    Wavelet types with large amounts of overreading/writing like 9_7 would
    write into the padding at high wavelet depths, which would remain and be
    read by the next frame's transform and quickly cause artifacts to appear
    for subsequent frames.
    This fix affects all frames encoded with a non-power-of-two width, with
    the artifacts varying between non-observable to very noticeable,
    depending on encoder settings, so reencoding is advisable.

    • [DH] libavcodec/vc2enc.c
  • lavc/videotoolboxenc : support additional options

    20 mai 2023, par Rick Kern
    lavc/videotoolboxenc : support additional options
    

    Added support for more VideoToolbox encoder options :
    - qmin and qmax options are now used
    - max_slice_bytes : Max number of bytes per H.264 slice
    - max_ref_frames : Limit the number of reference frames
    - Disable open GOP when the cgop flag is set
    - power_efficient : Enable power-efficient mode

    Signed-off-by : Rick Kern <kernrj@gmail.com>

    • [DH] libavcodec/videotoolboxenc.c
  • Generate and concatenate videos from images with ffmpeg in single command

    17 août 2022, par YulkyTulky

    My goal is to generate a video from images. Let's say I have 2 images 1.png and 2.png.

    &#xA;

    I can do

    &#xA;

    ffmpeg -loop 1 1.png -t 3 1.mp4&#xA;

    &#xA;

    ffmpeg -loop 1 2.png -t 5 2.mp4&#xA;

    &#xA;

    to create a 3 second video from the first image and 5 second video from the second image.

    &#xA;

    Then, I merge the two videos using

    &#xA;

    ffmpeg -i 1.mp4 -I 2.mp4 -filter_complex "concat" final.mp4 &#xA;

    &#xA;

    to create my final 8 second video.

    &#xA;

    This process seems extremely inefficient, and I feel I do not have to use all this processing power+disk reading/writing to create 2 intermediary video files when I only want the one final video.

    &#xA;

    Is there a way to execute this entire process in one ffmpeg command (efficiently) ?

    &#xA;