
Recherche avancée
Médias (5)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
-
Valkaama DVD Cover Outside
4 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
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (45)
-
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 (8552)
-
FFmpeg : high quality animated GIF ? [closed]
26 juin, par David HopeI'm generating animated a GIF from a video on my server.


The generated GIF is not really high quality and it looks like the pixels are huge.


Example :




This is how I generate the GIF :


/usr/bin/ffmpeg -i video.mkv -vf scale=500:-1 -t 10 -r 10 image.gif



I did a search on Google and came across this :


/usr/bin/ffmpeg -i video.mkv -r 20 -f image2pipe -vcodec ppm - | convert -delay 5 - output.gif



But the command above doesn't do anything and no output.gif is being generated at all.


There are some tutorials that I came across but none of them worked for me and some of them involve using ImageMagick which I dont have access to.


Could someone please let me know if there is a clear way to generate a high-quality GIF using FFmpeg ?


-
Fastest way to create animated gifs from mp4
23 mai 2017, par stinkypyperI have to batch process a very high number(200,000+) of short mp4s(less then 10s) into animated gifs. I think I have tried every possible command line way of doing it, but it still takes too long to produce quality gifs. Currently I use ffmpeg to unpack image(jpg) frames, and image magick convert to assemble them. It produces high quality gifs, but takes too long and uses too much memory and CPU, even with tweaking with the -limit memory and map limits.
I have also tried creating animated gifs directly using ffmpeg, but the quality is terrible at best. Also, I have tried using gifsicle, which does seem fast, but it only takes gifs as inputs, and using ffmpeg to generate them produces poor quality gifs.
Does anyone have some command line recipes for fast high quality gif creation ?
-
ffmpeg loop sound in part of video
22 juin 2017, par djibI’m trying to concatenate a few inputs, and loop a sound during the time of one input.
My inputs are :- intro.mp4
- jpg suite in "pics" folder -> pics/%04d.jpg
- loop.mp3
- outro.mp4
What i want to achive :
What i have so far :
ffmpeg -y -i intro.mp4 -r 25 -i "pics/%04d.jpg" -i outro.mp4 -i loop.mp3 -filter_complex
"[0:v:0] [0:a:0] [1:v:0] [3:a:0] [2:v:0] [2:a:0] concat=n=3:v=1:a=1 [v] [a]" -map "[v]"
-map "[a]" -c:v libx264 -pix_fmt yuv420p -profile:v baseline -level 3.0 -crf 20 -r 25
-movflags +faststart -c:a aac -b:a 192k output.mp4But that does not loop "loop.wav". I’v tried "-loop 1" before "-i loop.mp3" but that gives me this error : "Option loop not found."
ffmpeg version : 20170620-ae6f6d4-win64-static