
Recherche avancée
Médias (3)
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (94)
-
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 ;
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (15664)
-
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 -
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
-
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');