Recherche avancée

Médias (91)

Autres articles (106)

  • 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

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Qu’est ce qu’un masque de formulaire

    13 juin 2013, par

    Un masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
    Chaque formulaire de publication d’objet peut donc être personnalisé.
    Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
    Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)

Sur d’autres sites (11869)

  • How to add zoom transition effects using FFmpeg to a variable number of images ?

    13 mai 2019, par Mathematics

    How can I add add zoom transition effects using FFmpeg to a variable number of images ?

    I am able to create video from a variable number of images but I am not sure how to add zoom in and out transition effects between images :

    ffmpeg -framerate 1/5 -i img%03d.jpeg -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4

    I found this,

    https://superuser.com/questions/1189246/ffmpeg-image-slideshow-with-zoompan-and-fade-in-out/1190199

    But problem is that images are hard coded in that example and I am not sure how to make it work for a variable number of images ?

  • build video from images with a bash for loop using ffmpeg

    10 septembre 2021, par TheCodeNovice

    I am trying to take 50K images and turn them into a movie using ffmpeg. I am running this on a HPC setup, hence the slurm commands. My attempt does not work since I am running into a hard limit due to the shear volume of images. I cannot just list a start number since the pipeline will reject some images so I do not have a proper sequence.

    


    I know a loop could circumvent both issues but I am not sure how to use that with ffmpeg so that it builds one long movie.

    


    The cat command has worked for shorter movies but i just have too many images now.

    


    #!/bin/bash&#xA;&#xA;img_dir=&#x27;foo/bar/1/2/123456&#x27;&#xA;folder=&#x27;fooo&#x27;&#xA;#BATCH -p general&#xA;#SBATCH -N 1&#xA;#SBATCH -t 03-00:00:00&#xA;#SBATCH --mem=8g&#xA;#SBATCH -n 1&#xA;#SBATCH --mail-type=BEGIN,REQUEUE,END,FAIL,REQUEUE   &#xA;#SBATCH --mail-user=<snip>&#xA;&#xA;singularity exec /$img_dir/foo_container cat /$img_dir/processed_images/$folder/*.jpeg | ffmpeg -f image2pipe -i pipe:.jpeg -vf "crop=trunc(iw/2)*2:trunc(ih/2)*2" /$img_dir/processed_images/$folder/$folder.mp4&#xA;&#xA;</snip>

    &#xA;

  • avfilter/formats : fix wrong function name in error message

    4 décembre 2017, par Jun Zhao
    avfilter/formats : fix wrong function name in error message
    

    Use perdefined micro __FUNCTION__ rather than hard coding function name
    to fix wrong function name in error message.

    Signed-off-by : Jun Zhao <jun.zhao@intel.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/formats.c