
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 (111)
-
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
De près ou de loin...
29 avril 2011, parIls ne le savent pas forcément mais sont indispensables
MediaSPIP est un logiciel open-source, il se base sur d’autres logiciels, et d’autres logiciels lui sont également nécessaires pour fonctionner ... Les personnes ici listées ne savent pas forcément qu’elles ont un rôle important dans le développement, elles ont apporté leur connaissances dans le cadre de la création d’une partie de ces éléments nécessaires ou ont écrit des articles permettant de comprendre certaines choses... il semble indispensable (...) -
Liste des distributions compatibles
26 avril 2011, parLe tableau ci-dessous correspond à la liste des distributions Linux compatible avec le script d’installation automatique de MediaSPIP. Nom de la distributionNom de la versionNuméro de version 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
Si vous souhaitez nous aider à améliorer cette liste, vous pouvez nous fournir un accès à une machine dont la distribution n’est pas citée ci-dessus ou nous envoyer le (...)
Sur d’autres sites (4911)
-
Local ffmpeg output to S3 Bucket
21 juillet 2015, par ericHeres my setup ;
I have a local PC running ffmpeg with output configured to h.264 and aac
and S3 bucket created at AWS
what i need to do is, use ffmpeg [local] output to upload files directly to s3 bucket.
PS :
Planing to use that s3 bucket with cloudfront to allow 1 [one] user to stream a live event with about setup.i could not find a way to specify output location as s3 bucket [with key].
any ideas as to how to do it ? Thanks -
How to obtain the stderr on node-fluent-ffmpeg
14 mai 2014, par soycabanillasNow that the saveToFile callback param has been deprecated :
FfmpegCommand.prototype.saveToFile = function(targetfile, callback) {
if (callback) {
this.options.logger.warn('saveToFile callback is deprecated, use \'end\' and \'error\' events instead');I’ve changed my code from this :
new ffmpeg({ source: source })
.toFormat('ogg')
.saveToFile(path.normalize(targetFile), function(stdout, stderr) {
console.log('stdout', stdout);
console.log('stderr', stderr);
});to this :
new ffmpeg({ source: source })
.toFormat('ogg')
.on('end', function() {
console.log('file has been converted succesfully');
})
.on('error', function(err) {
console.log('an error happened: ' + err.message);
})
.saveToFile(path.normalize(targetFile));but I don’t know how to obtain the stderr that the old code give me as a param (stderr).
I know that I can obtain the error message from the on ’error’ event, but I would like to get the stderr to get deeper information about what went wrong.Thanks in advance.
-
Taking video over an image not giving desired output in ffmpeg
23 avril 2014, par Amit ChandraI am trying to convert a video in square shape(means in equal width and height). for that I am taking one png image from drawable folder(for background) and resizing it using Bitmap class after comparison of height and width of the video.(example if height of the video > width, than i am passing height and vise verse).
After resizing of image I am adding +20 in image for padding, after that I am passing image Path, Video Path to the ffmpeg command, which suppose to take video over the image and at the center. The ffmpeg command i am using for that is below :
ffmpeg -i test.flv -loop 1 -i test.png -filter_complex '[0:v]setpts=PTS-STARTPTS[background]" +"[1:v]setpts=PTS-STARTPTS[foreground]" +"[background][foreground]overlay=x=main_w/2-overlay_w/2:y=main_h/2-overlay_h/2:"+"shortest=0[out]"' -map [out] -map 0:a -t 00:00:10 out.mp4
But I am not able to get the expected output.