
Recherche avancée
Autres articles (23)
-
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 -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
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.
Sur d’autres sites (4692)
-
Export sprites/images from movie
7 octobre 2014, par Dr.KameleonOK, here’s the situation :
- I have a .mov video, recorded using QuickTime
- I want to split it into images (which I will use in a js animation)
JS Code :
function pad(num, size) {
var s = num+"";
while (s.length < size) s = "0" + s;
return s;
}
$(function(){
var currentIndex = 1;
setInterval(function(){
$("#theImage").attr("src","img/video"+pad(currentIndex,3)+".png");
currentIndex++;
}, 1000/24);
});
So, I tried with FFMpeg :
ffmpeg -i "video.mov" -f image2 -vf fps=24 video%03d.jpg
This works. But the quality of the sprites is very low.
ffmpeg -i "video.mov" -f image2 -vf fps=24 video%03d.png
This works too. But the quality/size of the sprite is HUGE. I mean every sprite is around 110KB, with a grand total far above the video’s size (100MB > 2MB !)
What’s going on ?
How can I achieve that, without losing any quality and still not having too deal with huge filesizes ?
-
How can I use Windows absolute paths with the movie filter on FFmpeg ?
26 février 2024, par MasonI want to do something like
-filter_complex "movie=C:\\User\\...\\file"
but I can't because of the:
in the Windows path. I tried escaping it with a\
but no luck. I've figured out how to get around it by making everything else an aboslute path and running the command in the same directory as the file I need for the movie filter, but the only reason that works is because I only have a single movie filter. I'm hoping there's a better way.

-
How to append 2 seconds of silence to an existing movie MP4 with ffmpeg ?
27 février 2020, par MarieI would like to append 2 seconds of silence to an existing video using ffmpeg.
I would like to keep the last frame displayed while the 2 seconds of video playsback not a black screen.Thank you.