
Recherche avancée
Autres articles (68)
-
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 (...) -
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 (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa 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 (...)
Sur d’autres sites (6721)
-
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'); -
how to use ffmpeg code in php [on hold]
10 mai 2016, par Angry KhanI just started working in php.I need help in writing following command of ffmpeg in php.Title and artist name will be fetch from database and file path will be given for mp3
ffmpeg32 -i in.mp3 -metadata title="The Title You Want" -metadata artist="Artist Name" -metadata album="Name of the Album" out.mp3
-
Where to place sql query in ffmpeg php code to fetch from database
22 avril 2016, par Asim khanI am working on
ffmpeg php
. In the code it is fetching id3 tag from the mp3 file that is in xamp directory.I want to fetch the id3 tags information directly from database. Kindly help me where should i Place sql query to fetch it from database.This is the code I am working on :
Code of ffmpeg