Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (49)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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 2013

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

    Ce 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/evc_frame_merge_bsf : make ff_evc_parse_nal_unit() local to the filter
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/evc_frame_merge_bsf.c
  • avcodec/aacdec_lpd : remove unused local variables

    21 juin 2024, par Leo Izen
    avcodec/aacdec_lpd : remove unused local variables
    

    int idx, and int first_tcx_flag are set but not used, so this commit
    removes their declarations and assignments.

    • [DH] libavcodec/aac/aacdec_lpd.c
  • 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;