
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (72)
-
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 (12160)
-
Accessing data of fmmpeg while processing in node.js
25 juin 2019, par newCOder2137sshIm converting a .mp4 file with ffmpeg to a .mp3 file.I am only able to access this data after ffmpeg finished, but I want to access it while it is processing.
I am currently using fluent-ffmpeg to process the video. This is how I process it :
proc = new ffmpeg({
source: stream
})
proc.withAudioCodec('libmp3lame')
.toFormat('mp3')
.seekInput(35)
.output(audio)
.run();I can access the data after ffmpeg fiinished with
proc.on('end', ())
but I’d like to access the data while it’s processing and make a reeadable Stream out of it. Does someone know how to do that ? -
How can you extract the header data of an audio file using libav ?
16 janvier 2024, par CheekyChipsI'm using libav/ ffmpeg to transcode an audio file from one format to another in c++. I have written it in a way so that it works for receiving streamed audio, where first the header of an audio file is sent, followed by chunks of encoded audio.


Now I'd like to generate some test files, where I separate an existing audio file into the header component, followed by chunks of encoded audio data, preferably frame aligned. (I would store this as base64 text for readability with each piece separated by some token, e.g. a newline character)


Is it possible using ffmpeg/ libav to extract the raw data of the header of an audio file ? If not, does anyone have any suggestions for how I can find the point in the audio file between the header data and the audio data, so I can then split it at this point ?


Note : actually if this is possible using the tool ffmpeg that would also be a viable solution


-
Javacv-ffmpeg : Getting audio data
25 janvier 2013, par bmericI'm trying to get audio data from a file(mp3, mp4 and 3gp). I can get frames but not the audio. Am i using wrong ffmpeg classes ?(I'm very new to ffmpeg)
FFmpegFrameGrabber ff = new FFmpegFrameGrabber("/sdcard/cock_a_1.wav" );
try {
ff.start();
Frame frame;
int i=0;
while ((frame = ff.grabFrame()) != null) {
if (frame.samples.hasArray())
Log.e("frame", String.valueOf(i++));
}
ff.stop();How can i extract audio data array ?