Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (111)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

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

Sur d’autres sites (8492)

  • libfaac : Queue input is backward in time

    28 février 2014, par iota

    I am using libav along with libfaac to encode audio into aac.
    following is the logic :

    frames[n]
    i = 0 ;
    while (there are frames)
    {
     cur_frame =  frames[i];
     av_encode_audio(frame, ...., &frame_finished);
     if( frame_finished )
     {
        i++;
     }
    }

    but I am getting this annoying warning for few frames "queue input is backward in time !"

  • Creating Real-Time Video Stream from Image Frames using FFmpeg and Streaming to RTMP URL

    12 mars 2024, par Dhairya Verma

    I've been working on a project where I need to continuously convert a series of image frames into a video and stream it to an RTMP URL in real time. I initially tried using FFmpeg with the following command :

    


    ffmpeg -f avfoundation -i ":1" -framerate 30 -i "./image%05d.png" -c:v libx264 -preset medium -tune stillimage -crf 25 -c:a aac -b:a 128k -ar 44100 -vf "format=yuv420p,scale=1280:720" -maxrate 3000k -bufsize 6000k -f flv "rtmps://your_rtmp_url_here"



    


    However, I encountered issues when new images were added to the folder in real-time. The solution wasn't as straightforward as I initially thought.

    


    Does anyone have experience with real-time video streaming from dynamically changing image frames using FFmpeg ? Any help or suggestions would be greatly appreciated !

    


    Thanks !

    


  • Are compression artifacts asymmetric in time ?

    15 mars 2020, par MaxB

    Suppose that an uncompressed movie was either

    • encoded (using H264)
    • decoded

    or

    • reversed
    • encoded (using H264)
    • decoded
    • reversed again

    Is it in principle possible to guess which procedure took place just by looking at the output (the uncompressed input is unavailable) ?

    In other words, are compression artifacts asymmetric in time ?