Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (28)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (7641)

  • Force x264 to encode all frames relative to the first (IDR) frame

    12 décembre 2019, par cloudraven

    I want to generate a h.264 stream in which P-frames are using references exclusively using a long-term reference to the first frame (an IDR frame). This would also require the first frame to be an IDR frame.

    



    This is an academic experiment to understand the encoding behavior of long-term references and the consequences of forcing frames to refer to a specific (single) frame rather than several.

    



    It would be great if I could do this from the command line, but if not possible I am open to modifying x264 for this purpose.

    



    Could anyone point me to where in the source code it is determined :

    



      

    • the reference frame / macroblock / partition for the current macroblock
    • 


    • changes made to the short term, long term reference frame list
    • 


    • whether to use a short term reference frame or a long term reference frame.
    • 


    



    Using another encoder like nvenc is also acceptable.

    


  • parse rtmp stream to detect a particular frame

    1er juin 2012, par scc

    I need to analyse an rtmp stream and when a given frame is streamed (predefined) I need to detect it and later on be able to create several recordings all split by that given frame. For example, stream emits predefined frame, program 1 starts, runs and ends, stream emits predefined frame again to signal program has ended. Now I need to create a video with program 1 and send it to youtube.

    Is there any library that can detect the given frame (step 1) (if python or nodejs even better) ? For splitting, ffmpeg should be enough, yes ?

    Any pointers very welcome :)

    Thanks :)

  • ffmpeg decode h.264 stream latency one frame always

    3 juillet 2018, par rywang

    Now I use the x264 library to compress the video (from camera) and transmit to client side by TCP. In the client side, use the ffmpeg library to decode the stream on the Win32. But I find the stream decoding always latency one frame. That is to say, if the client side received A,B,C three frame, when decode the A frame, can’t get the image. Then decode the B frame, get the A frame image.

    For the h.264 encode, i have set zerolatency - ultrafast - baseline. So I think there is no B frame.

    For the ffmpeg decoder, i have tried to set the thread_type = 0 to disable frame buffering decoding. But no efficient ! By the way, after decoded one frame, passing NULL to the decoder to flush the decoder can help this case. But i think this is not a good solution.

    So how to set the ffmpeg library to avoid the one frame latency ?