
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (106)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
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 (11815)
-
How to extract the 1st frame and restore as an image with ffmpeg ? [closed]
14 février, par lexAnyone knows the trick ?



And how to install ffmpeg ?
yum install mpeg
only returns this :


======================================================================================== Matched: mpeg ========================================================================================
libiec61883.i386 : Streaming library for IEEE1394
libiec61883.x86_64 : Streaming library for IEEE1394
qffmpeg-devel.i386 : Development package for qffmpeg
qffmpeg-devel.x86_64 : Development package for qffmpeg
qffmpeg-libs.i386 : Libraries for qffmpeg
qffmpeg-libs.x86_64 : Libraries for qffmpeg



-
golomb : Convert to the new bitstream reader
30 janvier 2017, par Diego Biurrungolomb : Convert to the new bitstream reader
- [DBH] libavcodec/aic.c
- [DBH] libavcodec/cavs.c
- [DBH] libavcodec/cavsdec.c
- [DBH] libavcodec/dirac.c
- [DBH] libavcodec/ffv1dec.c
- [DBH] libavcodec/ffv1enc.c
- [DBH] libavcodec/fic.c
- [DBH] libavcodec/flacdec.c
- [DBH] libavcodec/flacenc.c
- [DBH] libavcodec/golomb.h
- [DBH] libavcodec/golomb_legacy.h
- [DBH] libavcodec/h264_cavlc.c
- [DBH] libavcodec/h264_parse.c
- [DBH] libavcodec/h264_parser.c
- [DBH] libavcodec/h264_ps.c
- [DBH] libavcodec/h264_refs.c
- [DBH] libavcodec/h264_sei.c
- [DBH] libavcodec/h264_slice.c
- [DBH] libavcodec/h264dec.c
- [DBH] libavcodec/hevc_parser.c
- [DBH] libavcodec/hevc_ps.c
- [DBH] libavcodec/hevc_ps_enc.c
- [DBH] libavcodec/hevc_sei.c
- [DBH] libavcodec/hevcdec.c
- [DBH] libavcodec/jpeglsdec.c
- [DBH] libavcodec/jpeglsenc.c
- [DBH] libavcodec/loco.c
- [DBH] libavcodec/ralf.c
- [DBH] libavcodec/rv30.c
- [DBH] libavcodec/rv34.c
- [DBH] libavcodec/rv40.c
- [DBH] libavcodec/shorten.c
- [DBH] libavcodec/svq3.c
- [DBH] libavcodec/tests/golomb.c
- [DBH] libavformat/hevc.c
-
nodejs ffmpeg works in local but not in production
24 octobre 2019, par HUNGvar proc =
ffmpeg()
.input('./public/img/capture/photoframe.png')
.input( scenePath + '%04d.png')
.inputFPS(15)
.input( msgPath + '%04d.png')
.inputFPS(15)
.input( path + data + '.' + ext )
.complexFilter([
"[3:v]scale=668:-1[scaledUGC]",
"[0]overlay=66:155[output0]",
"[output0][scaledUGC]overlay=66:155[output1]",
"[output1][1]overlay=66:155[output2]",
"[output2][2]overlay=66:155[output3]",
"[output3][0]overlay=0:0[output4]"
], 'output4')
.outputFPS(15)
.on('start', function(command) {
if (env === 'development') {
console.log(new Date());
console.log('Start with command:'+command);
}
})
// .on('progress', function(progress) {
// if (env === 'development') {
// console.log(progress.percent + "% done");
// }
// })
.on('end', function() {
if (env === 'development') {
console.log(new Date());
console.log('file has been converted succesfully');
}
var gifMaker =
ffmpeg()
.input('./public/_ugc/' + data + '.mp4')
.save('./public/_ugc/' + data + '.gif');
res.send({
status: "success",
uid: data
});
})
.on('error', function(err) {
console.log('an error happened: ' + err.message);
res.send({
status: "err",
uid: "err_video"
});
})
.save('./public/_ugc/' + data + '.mp4');I have the above code that can successfully generate a 5s video in my local Mac.
However, when I push the code to the production Ubuntu, it can only generate a 1s video only.
There is no error in the Ubuntu side. I wonder if I missed anything.
I also wonder should I preload the source images first ?
node v12.13.0
ffmpeg version 2.8.15-0
ubuntu0.16.04.1