
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (62)
-
Participer à sa traduction
10 avril 2011Vous 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 (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa 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 (...) -
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)
Sur d’autres sites (8975)
-
Do I need an AVFormatContext for decoding raw audio data ?
4 décembre 2023, par CheekyChipsI am streaming encoded audio data to my program, in raw byte arrays. The audio data could have any encoding but when I receive the data I will know the encoding, sample rate, etc, so I know how to interpret it. Using ffmpeg/libav libraries, I want to decode the audio chunks when I receive them and do some processing with them (e.g. resampling). My question is, since I am getting raw encoded audio data that is not wrapped in a file format, do I still need to create a
AVFormatContext
and useav_read_frame()
to get the encodedAVPacket
? Or should I just create anAVPacket
usingav_packet_from_data(AVPacket *pkt, uint8_t *data, int size)
and manually set the properties like encoding, sample rate, etc ? It is my understanding thatAVFormatContext
is meant for representing file formats, i.e. wrappers, so I don't know if it would work if I use raw encoded audio data (which I would access through a customAVIOContext
). Also, since I want to support lots of different audio codecs as input, I don't know if the different frame sizes for different codecs will make it difficult to create anAVPacket
, if I have the wrong number of samples in my data array, so maybe anAVFormatContext
would be better.

Which is the better approach for decoding raw encoded audio chunks - creating an
AVFormatContext
orAVPacket
s ?

-
How to split each channel data of the recording [on hold]
4 décembre 2018, par MikeDuring the mass production process, the 4-channel data of the microphone recording is split into the data of each channel.
How to use ffmpeg split each channel data of the recording
-
Trancsode and generate waveform data file in ffmpeg with a single command
19 mai 2019, par user1152226I am trying to transcode and generate a waveform data file in the same command. I cannot figure out how to generate 2 output files from a single input. I want an mp4 file, and the waveform data file. The waveform data needs to be generated from the output of the transcoding step (ie, after the stream has already been transcoded)
The following does not work :
ffmpeg -i "https://mp3l.jamendo.com/?trackid=862797&format=mp31" -map 0:a -c:a libfdk_aac out1.mp4 -f data data.txt
Output file #1 does not contain any stream