
Recherche avancée
Médias (1)
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (98)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 ;
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (16307)
-
Getting content-length of a live-re-encoded video
9 avril 2021, par MariusSo, i have a lot of hevc(h265) video on a remote http server, that i want to serve as h264 through ffmpeg and nodejs. I've had a bunch of issues with content-length, or in general just getting skipping, and video duration to work properly.


So the main problem is getting content-length, or any other header to make duration and skipping work properly.


I've tried calculating approx content-length, but it never seems to match properly.


My code so far :


express setup here....
app.get('/', (req, res) => {
 res.contentType('mp4');
 
 ffmpeg(remote_video_url)
 .inputOption([
 "-hwaccel auto",
 ])
 .outputOptions(['-movflags isml+frag_keyframe'])
 .videoCodec('h264_nvenc')
 .toFormat('mp4')
 .on('error', (err,stdout,stderr) => {
 console.log('an error happened: ' + err.message);
 console.log('ffmpeg stdout: ' + stdout);
 console.log('ffmpeg stderr: ' + stderr);
 })
 .on('end', () => {
 console.log('Processing finished !');
 })
 .on('progress', (progress) => {
 console.log('Processing: ' + progress.percent + '% done');
 })
 .pipe(res, {end: true});
})



Any help would be greatly appreciated


-
doc/developer : add description about safely sending patches via E-Mail clients
7 août 2021, par Soft Works -
MAINTAINERS : Add some Mail aliases / mailing lists (aka how to contact the specific...
28 août 2024, par Michael Niedermayer