
Recherche avancée
Autres articles (86)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (12383)
-
Write raw PCMA data to an audio file using ffmpeg
4 août 2020, par WithoutExperienceI 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.


-
How to modify SPS/PPS aka Codec Private data of a mkv file
13 novembre 2019, par Minh NghĩaI 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 thatcodec 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 differentnuma-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 !
-
Converting PCM-ALAW data to an audio file using ffmpeg
8 septembre 2020, par bbddIn 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.