Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (98)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (12307)

  • 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

    


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

  • merge audio and video with ffmpeg doesnt work correctly

    3 février 2023, par Iman Amani

    I have ubuntu 20.04 and in past days I did this job(merge video and audio) well in terminal and with ffmpeg :

    


    ffmpeg -i input.mp4 -i input2.mp3 -c copy output.mp4

    


    so fast I have recived output.mp4, but now I tried this one and get output without any sound !

    


    I try another ways to merge this ones(also with ffmpeg) but there are no diffrent...