
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (49)
-
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 -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (6037)
-
avcodec/evc_frame_merge_bsf : make ff_evc_parse_nal_unit() local to the filter
17 juin 2023, par James Almer -
avcodec/aacdec_lpd : remove unused local variables
21 juin 2024, par Leo Izen -
ffmpeg is overlying images when making movie from png files of an evolving chart
15 octobre 2020, par James CarrollI am trying to make a movie of a series of charts as they change through time. I have 30 or so still versions of the chart in .png format.


But when I combine them into a movie, the charts are progressively overlaid on top of each other, rather than progressing through time.


I have tried several variations including :


ffmpeg -r 1 -f image2 -start_number 0 -i name%2d.png -q:v 5 movie.wmv



and


ffmpeg -r 1/5 -start_number 1 -i name%2d.png -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4



All do the same thing.


Any idea why this is happening ?


Update 1 :


git repo of sample images and failed movie here : https://github.com/jlc42/MovieTest.git


Update 2 :


Just in case, I tried removing the alpha channel with the following command which I found in another thread Remove alpha channel in an image :


for i in `ls *.png`; do convert $i -background black -alpha remove -alpha off $i; done



because my background is white, I also tried :


for i in `ls *.png`; do convert $i -background white -alpha remove -alpha off $i; done



I THINK I have now successfully removed the alpha channel in the images, but this did not seem to make a difference for what ffmpeg is doing.