
Advanced search
Other articles (65)
-
List of compatible distributions
26 April 2011, byThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Les tâches Cron régulières de la ferme
1 December 2010, byLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Publier sur MédiaSpip
13 June 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
On other websites (7793)
-
cleaned up the code
22 March 2009, by brandonaaronm ChangeLog.markdown m jquery.mousewheel.js m test/index.html cleaned up the code
-
cleaned up the code
22 March 2009, by brandonaaronm ChangeLog.markdown m jquery.mousewheel.js m test/index.html cleaned up the code
-
ffmpeg exited with code 1
24 June 2014, by 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');