Recherche avancée

Médias (91)

Autres articles (19)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (6844)

  • ffmpeg av_read_frame() need very long time to stop

    24 juillet 2017, par yuyingsuifeng

    I use ffmpeg to decode RTSP video.It likes that :
    When it’s on the end of file,it block in the av_read_frame() for a long time,why ?

  • ffmmpeg output filename manipulation - extract every n seconds and put time of frame in output file

    27 août 2022, par Fat Robert

    I have an mpg file. I want to extract a frame every 'n' seconds (example below every 2 minutes) and make a filename that matches the frame time + the start time. Can I do this in ffmpeg.

    


    ffmpeg -i '20220804 - 091910_3.mpg' -vf fps=1/120 ../test_video_images/OUTFILE03d.jpg

    


    I sse that part of the output as the command executes has time info :

    


    frame= 1 fps=0.1 q=5.3 size=N/A time=00:02:00.00 bitrate=N/A speed= 15x

    


    Can I get to the time variable and append it onto the output name ?

    


    Regards,

    


  • FFmpeg : calculate time to convert images and .mp3 to a video

    6 avril 2013, par DomenK

    Is there any formula that I can use to calculate the time that FFmpeg uses to convert a single .jpg image and .mp3 song to a video ?

    I am using the following code :

    ffmpeg -loop 1 -r ntsc -i image.jpg -i song.mp3 -c:a copy -c:v libx264 \
      -preset fast -threads 0 -shortest
    

    Lets say we have an image with X resolution and .mp3 length of L. Would the formula be :

    time = X * L(in seconds) ?

    Thanks for any tips.