Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (55)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le 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, par

    Mediaspip 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, par

    Pré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
    doc/general : update after recent additions
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] doc/general.texi
    • [DH] libavformat/vag.c
  • Revision 34282 : une action pour supprimer une note avec un bouton action

    8 janvier 2010, par cedric@… — Log

    une 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 Carroll

    I 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.

    &#xA;

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

    &#xA;

    I have tried several variations including :

    &#xA;

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

    &#xA;

    and

    &#xA;

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

    &#xA;

    All do the same thing.

    &#xA;

    Any idea why this is happening ?

    &#xA;

    Update 1 :

    &#xA;

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

    &#xA;

    Update 2 :

    &#xA;

    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 :

    &#xA;

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

    &#xA;

    because my background is white, I also tried :

    &#xA;

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

    &#xA;

    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.

    &#xA;