Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (89)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (11386)

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