
Recherche avancée
Autres articles (64)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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" (...) -
Publier sur MédiaSpip
13 juin 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
Sur d’autres sites (9633)
-
Changelog : Add new line after 5.0
5 janvier 2022, par James Almer -
adobe premiere command line calls for encoding/decoding [on hold]
2 février 2016, par rishi007bansodIs there any command line instruction set for adobe premiere like that we have in ffmpeg encoder. I basically need to replace encoding tasks done by ffmpeg encoder in my program by adobe premiere encoder. So are there any command line instructions that can set encoding parameters(e.g. gop size, frame rate, quality parameter) in adobe premiere.
-
Media Type Unrecognized with FFMPEG file generated
2 août 2016, par pirmaxI have an upload problem with the Twitter API.
The problem is caused by codecs I think.I use FFMPEG to concatenate an audio file and an image, so to build a 30-second video to a file not exceeding in the 1MB.
Here is the code that allows me to build this file and then upload the video via the Twitter API :
var convert = function(image, audio, output) {
var proc = ffmpeg(image)
.loop(30)
.addInput(audio)
.format('mp4')
.videoBitrate('1024k')
.videoCodec('mpeg4')
.size('640x640')
.audioBitrate('128k')
.audioChannels(2)
.audioCodec('libfaac')
.on('end', function() {
console.log(output);
fs.readFile(output, function(err, base64data) {
client.post('media/upload', { media: base64data }, function (error, media, response) {
console.log(media);
});
});
})
.on('error', function(err) {
console.log('an error happened: ' + err.message);
})
.save(output);
};Each upload, I get the following message : unrecognized media type
{ request: '/1.1/media/upload.json',
error: 'media type unrecognized.' }Could you help me please ? Thanks !