
Recherche avancée
Médias (10)
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (108)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (12179)
-
avformat/dashdec : Check whitelist
15 janvier, par Michael Niedermayer -
node-fluent-ffmpeg Multiple images to video
16 août 2015, par tsurantinoI am trying to stitch multiple .PNG images to a single .MP4 video using Node. I am using
ffmpeg
and specifically, thenode-fluent-ffmpeg
library.I can only get one frame to show up at a time, when I instead intend to show 100+.
var video = ffmpeg();
for (var i = 1; i <= 168; i++) {
//console.log('Adding: ' + path.join(__dirname, 'public', 'tmp', 'frame-' + i.toString() + '.png'));
video.input(path.join(__dirname, 'public', 'tmp', 'frame-' + i.toString() + '.png')).loop(1);
}
video.save(path.join(__dirname, 'public', 'videos', 'test.mp4'))
.on('end', function() {
console.log('file has been converted succesfully');
res.redirect('/');
})
.on('error', function(err) {
console.log('an error happened: ' + err.message);
}) -
From multiple video files to single output
25 juillet 2019, par Cordo van SaviourLet’s say that I have a list of hundreds of possible video files. Using
ffmpeg
it’s pretty easy to take multiple files and stitch them together to single video output, but that’s where the things become tricky.I’m looking for a way to have them stream live and dynamically add videos to queue as stream goes on. Think of something like SSAI but for the whole video.
Stream live is there so we don’t have a delay while waiting for
ffmpeg
to finish the whole video but rather start as soon as possible, and also so we could choose next files in queue during the live stream.Simplified, it would look something like this :
[v] [v] [v] [v] - stored video files, eg. on S3
[v] - chosen file
| |
| | - during the live stream
| |
\ /
V
_________ ___________ ___________
\ / | | || ||
\ / =====> | | =====> || |:> ||
\___/ |_________| ||_______||
Video queue FFMPEG? Live stream
Transcoding module?
Magic?I’m writing this in Node.js if that makes any difference.
Is this even possible ? If you need any more information please ask away, and every suggestion is greatly appreciated !