
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (108)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (10082)
-
avcodec/hevc : fix duplicate/wrong nal unit check and difference to openhevc_upstream
20 octobre 2013, par Mickaël Raulet -
ffmpeg AAC audio encoding with libfdk_aac : difference between -q:a and -vbr quality parameters ?
16 juin 2020, par RocketNutsI want to encode an audio file to AAC, using libfdk_aac, and I'm wondering about the quality parameters. I want to use variable bitrate encoding, not constant bitrate.



It seems I can specify the quality either with the
-vbr N
parameter (withN
=1..5) like this :


ffmpeg -i input.flac -acodec libfdk_aac -vbr 4 output.m4a




Or using the
-q:a N
parameter (hereN
=0..9) like this :


ffmpeg -i input.flac -acodec libfdk_aac -q:a 7 output.m4a




How are these two related, is there a substantial difference ? Do specific
-q:a
values correspond to certain-vbr
values, or is it a different encoding approach altogether ?

-
What is the difference between these 2 videos ?
8 octobre 2018, par 98mpriceI am using fluent-ffmpeg to resize a video.
I can’t figure out what’s happening though. I have 2 video files, one works but the other doesn’t. I’ve been scouring the
mediainfo
outputs of both files, checking for discrepancies but other thanfilesize
,duration
etc. there’s no difference (samecodec
,format
,width
/height
,frame rate
etc)Here’s a link to both files.
I’ve been reading these video files into fluent-ffmpeg using an input stream, as so :
await new Promise((resolve, reject) => {
ffmpeg(file.stream)
.output(path)
.size('426x240')
.on('start', function() {
console.log('started');
})
.on('error', function(err) {
console.log('An error occurred: ' + err.message);
})
.on('progress', function(progress) {
console.log('... frames: ' + progress.frames);
})
.on('end', function() {
console.log('Finished processing');
resolve();
})
.run();
});The working file prints :
started
... frames: 86
... frames: 107
Finished processingBut the non-working file doesn’t seem to have any frames, and prints :
started
... frames: 0
Finished processingAny idea what could be wrong ?
The ffmpeg command being executed :
ffmpeg -i pipe:0 -y -filter:v scale=w=426:h=240 uploads/works.mp4