
Recherche avancée
Autres articles (52)
-
MediaSPIP Core : La Configuration
9 novembre 2010, parMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Utilisation et configuration du script
19 janvier 2011, parInformations spécifiques à la distribution Debian
Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
Récupération du script
Le script d’installation peut être récupéré de deux manières différentes.
Via svn en utilisant la commande pour récupérer le code source à jour :
svn co (...)
Sur d’autres sites (9128)
-
How to get specific start & end time in ffmpeg by Node JS ?
3 novembre 2017, par Santosh SuryawanshiI want to cut a video in specific start & end time & save it. I cant understand how to cut specific time of that video by Node JS.
Video copy code :
return new Promise(function(resolve ,reject){
var ffmpeg = require('fluent-ffmpeg');
ffmpeg(fs.createReadStream(path.join(__dirname,'..','..','/video.mp4')))
.seekInput('01:00')
.duration('02:00')
.outputOptions('-strict experimental')
.on('start', function(commandLine) {
console.log('Spawned Ffmpeg with command: ' + commandLine);
}).on('end', function(err) {
if (!err) {
console.log('conversion Done');
//res.send("conversion Done");
resolve();
}
}).on('error', function(err) {
console.log('error: ', +err);
reject(err);
}).save(path.join(__dirname,'..','..','/test.mp4'));
}); -
avconv : video from images with multiple names
15 novembre 2017, par user6760680I am trying to do something apparently simple : I would like to make a video from a series of images which have different roots in their filename, with
avconv
on linux. My images are, say :imageA_0001.png
imageA_0002.png
imageA_0003.png
imageB_0001.png
imageB_0002.png
imageB_0003.png
imageB_0004.pngThe question closest to mine that I could fine is this one. Unfortunately, it does not help me, using a command like :
avconv -pattern_type glob -i 'image?_%04d.png' -c:v libx264 -filter:v "setpts=6.0*PTS" video.mp4
Note that the first answer therein does not work any more. I tried using multiple
-i
for each filename, but that does not work either. I would like to be able to do this without renaming files or making links. Isn’t it possible ? -
fate/oggvorbis : Fix tests after fixing AV_PKT_DATA_SKIP_SAMPLES
10 juillet 2021, par Guangyu Sunfate/oggvorbis : Fix tests after fixing AV_PKT_DATA_SKIP_SAMPLES
After fixing AV_PKT_DATA_SKIP_SAMPLES for reading vorbis packets from ogg,
the actual decoded samples become fewer. Three fate tests are failing :fate-vorbis-20 :
The samples in 6.ogg are not frame aligned. 6.pcm file was generated by
ffmpeg before the fix. After the fix, the decoded pcm file does not match
anymore. Ideally the ref file 6.pcm should be updated but it is probably
not worth it including another copy of the same file, only smaller.
SIZE_TOLERANCE is added for this test case.fate-webm-dash-chapters :
The original vorbis_chapter_extension_demo.ogg is transmuxed to dash-webm.
The ref file webm-dash-chapters needs to be updated.fate-vorbis-encode :
This exposes another bug in the vorbis encoder that initial_padding is not
correctly set. It is fixed in the previous patch.Signed-off-by : Guangyu Sun <gsun@roblox.com>