Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (80)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Les images

    15 mai 2013

Sur d’autres sites (8926)

  • ffmpeg amix : process pcm data stream realtime

    29 décembre 2020, par YouCL

    I am building an exe with ffmpeg libs. In this exe, I got 2 3 pcm data streams from lower level sdk, I need to mix/merge these data to an audio file on the fly. Now I am trying amix filter, my questions are :

    


      

    1. How to send raw pcm data to ffmpeg filter graph by hand instead of frames from decoder as usual ?
    2. 


    3. One of the pcm data streams starts and ends randomly. If I set 3 source filters, is it going to work ?
    4. 


    


  • How to decode stream data via ffmpeg library [closed]

    23 juillet 2024, par Steffen Roeber

    I found this example on GitHub : avio_read_callback.c. Unfortunately, it is a very simplified example because it reads the whole input file into memory and processes it at once.

    


    Does anyone have a better example of how to use avio_alloc_context with the read callback and how to handle incoming data block by block ? Specifically, I'm looking for details on :

    


      

    • The appropriate size for avio_ctx_buffer_size
    • 


    • The correct return value in the read callback if there isn't enough data
    • 


    • Handling situations where more memory is needed after some data has already
been copied, such as when avformat_open_input fails initially
    • 


    


    I have an H.264 stream that works sometimes, depending on the buffer sizes, but I occasionally experience data drops.

    


  • Encoding raw video data using C++ [closed]

    6 décembre 2020, par Lakshya

    I have raw video data ( array of unsigned chars ). Which is data to represent one frame.
I have many frames like this.(Actually these are the frames of a video which I have already decoded.)

    


    How can I encode it using Gstreamer or FFMPEG or something else. Programming language should be C++.

    


    I am expecting some example code.