Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (67)

  • Les images

    15 mai 2013
  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

  • 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

Sur d’autres sites (7228)

  • how to create video by images using php

    25 octobre 2015, par Nikunj Chavda

    I have some images video12.jpeg,video13.jpeg,video14.jpeg,video15.jpeg and I want to covert images to video.
    Please check below code but but it not working...

    first try by...

    exec("ffmpeg -i movie.mpg -r 0.2 -sameq -f image2 video%02d.jpeg");// not create video if put video%02d.jpg instead of video%02d.jpeg

    secode try

    exec('ffmpeg -r 10 -b 1800 -i video%03d.jpeg test1800.mp4');//// not create video if put video%02d.jpg instead of video%02d.jpeg

    Please suggest me how to create video using images.

  • make a video from different images using ffmpeg

    1er avril 2014, par berserk

    I am trying to merge images to create a video using ffmpeg. The images don't have sequential names (like image000.jpg,image001.jpg etc), they have random names. I found out the ffmpeg command is

    ffmpeg -f image2 -i image%d.jpg video.mpg

    How to achieve this for non-sequential files ?

  • Why ffmpeg is skipping some images ?

    17 décembre 2019, par niyasc

    I’m trying to create a slideshow with cross-fade effect using ffmpeg.

    As mentioned, another SE question, I’m using the following line for this purpose.

    ffmpeg -i SEQ_%03d.png -i $AUDIO -vf zoompan=d=$TOTAL_DURATION:fps=1/$FADE_DURATION,framerate=25:interp_start=0:interp_end=255:scene=100 -c:v mpeg4 -shortest -maxrate 5M -q:v 2 "temp_file.mp4"

    Full script is stored in Github.

    This works well. But, it is skipping some of my images. It is skipping the images that I created using GIMP. These images are appearing, If i keep it at the beginning of the sequence. But, not at the end.


    I have created a MVP for the same.

    The issue can be reproduced with following command.

    ffmpeg -i %02d.png -vf zoompan=d=4:fps=1,framerate=25 out.mp4

    Input images are available in Github.


    Please help me to understand why this script is not taking some of my images.

    Thanks.