Recherche avancée

Médias (91)

Autres articles (96)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • 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 (16700)

  • FFmpeg Batch .mov > .gif conversion

    26 juin 2022, par Bumblefoot89

    I am trying to batch convert a folder of .mov's into .gif's.

    


    Input .mov's are 1920x1080 resolution and I would like to convert to 720x480 (to save file size). I have the following code, but not sure how to add the -vf scale=720 into this code :

    


    for i in *.mov; do ffmpeg -ss 1 -i "$i" "${i%.*}.gif";  done


    


    The above code works, just running it through terminal. Any help on adding the scale or any other optimizations to reduce file size would be greatly appreciated.

    


    Thanks

    


  • FFMPEG installing 2018

    7 février 2018, par sam67

    Hi i have been trying to install ffmpeg for 2 days now and had no luck. I have tried countless videos on youtube, step by steps on google with no luck. Any help would be great.

    I have a Centos 6 server.
    Yes i am using root ssh in terminal on mac.
    Commands i tried are :

    1. wget http://mirror.ffmpeginstaller.com/old/scripts/ffmpeg8/ffmpeginstaller.8.0. tar.gz
    2. tar -xvzf ffmpeginstaller.8.0.tar.gz
    3. cd ffmpeginstaller.8.0
    4. ./install.sh

    Any help would be a massive help,
    many thanks.

  • How to use ffmpeg to create a video from bmp images

    15 mars 2013, par user2163605

    I'm using Xming and Putty to SSH into a linux terminal on Windows 8. I have 50 images that are named image1.bmp image50.bmp, and I am trying to use ffmpeg to convert these bmp images into a video.

    I have read over the ffmpeg documentation and followed their example for converting images to a video, and several examples I found on the internet (including here on stackoverflow).

    However, none of them have worked. How do I go about accomplishing this ? Thank you.