Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (77)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

Sur d’autres sites (8687)

  • Using FFMPEG concat to produce a short output video

    25 mai 2018, par MGM

    I need to concatenate 306 images using FFMPEG.
    so, I proceed with the following script shell :

    touch input.txt

    for i in `seq 0 305`;
    do
     echo "file $i.png" >> input.txt
     echo "duration 1" >> input.txt
    done

    echo "file 305.png" >> input.txt

    ffmpeg -f concat -i input.txt -vf fps=10 -vsync vfr -pix_fmt yuv420p video.mp4
    1. I can’t find the right parameters for concat.
    2. I searching about duration, I can’t find if it’s possible to specify
      less than 1 second.
    3. Every time, I change fps, the duration of output video became so
      big ; example : if fps = 10 , output video duration = 3060 seconds

    also, I tried :

    1. ffmpeg -f concat -i input.txt -vf fps=10 -vsync vfr -pix_fmt yuv420p
       video.mp4
    2. ffmpeg -f concat -i input.txt -y -vf fps=1 -crf 22 -threads 2
       -preset veryfast video.mp4

    I tried also, with duration 1 for all images, the final video show only 1 image.

    I need to concat those images and produce a short output video.

    any idea

  • h264 : prevent two matching fields from being both a short/long ref combination

    28 novembre 2013, par Anton Khirnov
    h264 : prevent two matching fields from being both a short/long ref combination
    

    Fixes possible access to freed memory.

    Found-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    CC:libav-stable@libav.org

    • [DBH] libavcodec/h264_refs.c
  • avutil/tests/base64 : Check with too short output array

    11 mai 2024, par Michael Niedermayer
    avutil/tests/base64 : Check with too short output array
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/tests/base64.c