
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (80)
-
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (14957)
-
cleaned up the code
22 mars 2009, par brandonaaronm ChangeLog.markdown m jquery.mousewheel.js m test/index.html cleaned up the code
-
cleaned up the code
22 mars 2009, par brandonaaronm ChangeLog.markdown m jquery.mousewheel.js m test/index.html cleaned up the code
-
ffmpeg exited with code 1
24 juin 2014, par user2757842Im trying to transcode a livestream using FFmpeg within a node.js app. However, when i run my code i get the following error :
an error happened: ffmpeg exited with code 1
Anyone ever come across this ?
Here is my code :
var ffmpeg = require('fluent-ffmpeg');
//set the path to the live stream
var proc = new ffmpeg({ source: 'rtmp://localhost/livepkgr/livestream live=1', nolog: true, timeout: 432000, inputlive:true});
//Set the path to where FFmpeg is installed
proc.setFfmpegPath("C:\\Users\\Jay\\Documents\\FFMPEG\\bin\\ffmpeg.exe");
proc
//set video bitrate
.withVideoBitrate(1024)
//set h264 preset
.addOption('preset', 'superfast')
//set target codec
.withVideoCodec('libx264')
//set audio bitrate
.withAudioBitrate('128k')
//set audio codec
.withAudioCodec('libfaac')
//set number of audio channels
.withAudioChannels(2)
.on('end', function() {
console.log('file has been converted successfully');
})
.on('error', function(err){
console.log('an error happened: ' + err.message);
})
//save to file
.saveToFile('C:/Users/Jay/Documents/movie/drop.ismv');