Recherche avancée

Médias (0)

Mot : - Tags -/optimisation

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

Autres articles (65)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • 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

Sur d’autres sites (10115)

  • Converting PCM-ALAW data to an audio file using ffmpeg

    8 septembre 2020, par bbdd

    In my project, I processed the received RTP packets with the payload, and extracted all the payload to a separate buffer. This payload is - PCM ALAW (Type 8). How do I implement a class that will take as arguments - the file name and a buffer with raw data to create an audio file. Exactly what steps do I have to go through in order to encode raw data into an audio file ? As an example, I used this example.

    


  • How to modify SPS/PPS aka Codec Private data of a mkv file

    13 novembre 2019, par Minh Nghĩa

    I encode my clip in 5 parts (output is x265 in MKV), using -ss and -t to seek to cut position. Now mkvtoolnix refuses to merge the encoded files, warning that codec private data doesn't match.

    From this question in mkvtoolnix repo, I learned that the codec private data is encoded in PPS/SPS field of the file. I check the encoding settings from mediainfo, and found that all settings are the same, just one file has a different numa-pool argument. I think my files can still be merged.

    How can I edit SPS/PPS data to fool mkvmerge into merging my files ? Thanks !

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