Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (10129)

  • 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 ?

  • 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 !

    


  • 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 !"