
Recherche avancée
Autres articles (63)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
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 (11165)
-
FFmpeg overlay opacity
19 avril 2017, par AMRITA MISHRAI have a sequence of frames which I concat to create a video.
On series of frames, I want to overlay an image with varying opacity(want to give fade in animation effect).
The opacity should vary w.r.t. time or frame number().
Tried using this command -ffmpeg -f concat -i input.txt -i inputImg.jpg -filter_complex "[1]format=argb,geq=r=’r(X,Y)’:a=’T*alpha(X,Y)’[v1] ;[0][v1]overlay=x=70:y=100" -crf 22 -threads 2 -preset ultrafast output.mp4
But the output video does not contain the overlaid image.
Note : frame size and overlaid image have different dimensions. -
Node package fluent-ffmpeg
14 octobre 2015, par Jon StevensI am building something that generates a slideshow video of images with the node package ’fluent-ffmpeg’. I have most everything working in the video creation except for cycling through multiple images. Here’s my code :
var ffmpeg = require('fluent-ffmpeg');
var loop = 5;
var duration = (images.length * loop);
var frames = 25;
var width = '1280';
var height = '720';
var dimensions = width + 'x' + height;
var aspect = '4:3';
var watermark = ffmpeg()
.addInput('images/resized/watermark-0.jpg')
.fps(frames)
.loop(loop)
.size(dimensions)
.aspect(aspect)
.autopad()
.format('mp4')
.duration(duration)
.videoFilters(
{
filter: 'fade',
options: ['in', 0, 30]
}
)
.on('error', function(err) {
console.log('Error ' + err.message);
})
.on('end', function() {
console.log('Finished!');
})
.save("middle.mp4");The issue is that the last image overwrites the first or any preceding images. How can I create a video with an array of images that treats it like a slideshow and cycles through the images. It works great when I just have one ’addInput’ element for images but as soon as I add a second image the video either breaks or the last image overwrites the others. HELP !
-
libkvazaar : Replace asserts with proper errors
28 septembre 2015, par Arttu Ylä-Outinen