
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (55)
-
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Prérequis à l’installation
31 janvier 2010, parPréambule
Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
Il (...)
Sur d’autres sites (8331)
-
doc/general : update after recent additions
25 octobre 2015, par Paul B Mahol -
Revision 34282 : une action pour supprimer une note avec un bouton action
8 janvier 2010, par cedric@… — Logune action pour supprimer une note avec un bouton action
-
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.