Recherche avancée

Médias (0)

Mot : - Tags -/organisation

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (74)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • 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

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (8959)

  • Installing Older FFmpeg Version Using Homebrew

    31 mai 2022, par Sir Bad News

    I have the latest version of Homebrew and FFmpeg on OSX 10.9.5.

    



    I need to install an older version of FFmpeg using Homebrew, rather than just running :

    



    brew install ffmpeg


    



    Could someone please explain how to do this ? I know older versions of FFmpeg are readily available online : just need to figure out how to get Homebrew to find them, either online or on my system after downloading.

    



    MF.

    


  • Write raw PCMA data to an audio file using ffmpeg

    4 août 2020, par WithoutExperience

    I received a task where I have to process RTP packets containing audio data. In the previous question, I figured out how to process an RTP packet, and output the payload for further processing. In my case, the type of payload is PCMA (Payload type - 8). The problem occurs when writing the payload itself. I know that when allocating a payload, it also needs to be processed, since this load contains the audio data format and the audio data itself. The question is how do I create an audio file using the ffmpeg library and write audio packages created using the ffmpeg library itself to it. I should use the library functions, not the finished library itself.

    


    I looked at the encoder example, but I don't know how to bypass the raw PCMA data itself, how to create a frame and write it to a file.

    


  • Pass image rectangle with the only changes to ffmpeg libavcodec encoder

    18 octobre 2022, par Alecu

    I am getting a list of small rentangle images with contain the parts of the image that have changed from the previous image. This results from the desktop image capture with directx11 which provides what parts of the desktop image have changed and the rectangles from them.

    


    I am trying to figure out if I can pass them to ffmpeg libavcodecs encoder for h.264. I looked into AVFrame and didn't see a way to specify the actual parts that have changed from the previous image.

    


    Is there a way to actually do this, when passing an image to the ffmpeg codecContext to encode it in the video, to just pass the changed parts from the previous frame ? Maybe doing this will reduce the amount of CPU usage because this is for a live stream.

    


    I use the standard avcodec_send_frame to send a frame to the codec for encoding, it only has an AVframe and a codec context as parameters.