Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (103)

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

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (7215)

  • 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

    


  • Using ffmpeg to convert an SEC file

    29 septembre 2023, par anna

    I need to convert an SEC file into any video format that I can share and/or upload to Youtube. MP4, etc.

    



    I'm a complete newbie at all things terminal. I've tried :

    



    ffmpeg -i video.sec video.mp4

    



    ffmpeg -i video.sec -bsf:v h264_mp4toannexb -c:v copy video.avi

    



    ffmpeg -i video.sec -b 256k -vcodec h264 -acodec aac video.mp4

    



    I don't understand what any of these mean, they're just examples I found online. However, whatever I try returns this error :

    



    Invalid data found when processing input

    



    Any thoughts ? Thanks !

    


  • Creating a m3u8 clip from another m3u8 file

    14 janvier 2021, par Alan
    


    I wanna create a m3u8 clip from another m3u8 file.
This is the command line I'm giving on terminal
ffmpeg -ss 6.2 -i test.m3u8 -y -t 45 -profile:v baseline -s 640x360 -level 3 -start_number 0 -hls_list_size 0 -f hls output_test.m3u8
It is giving me an output of a new m3u8 clip of 45s but nothing happens in the first 3-4 seconds.
Anything I'm missing ?need help