Recherche avancée

Médias (91)

Autres articles (104)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (12697)

  • How can I batch/sequentially download m3u8 files using ffmpeg & Power Shell in Windows ?

    28 février 2020, par piznajko

    There’s a similar question asked asked by Yesterdec but for Mac batch scirpt

    I’m currently downloading m3u8 videos one by one using the following Power Shell command on Windows :

    ffmpeg -i "http://example.com/video_url.m3u8" -c copy -bsf:a aac_adtstoasc "output.mp4"

    I want to automate this process, using some FetchURL.bat scirt and a URLs.txt file with the URLs (each URL there is seperated by a new line) to download one by one multiple m3u8 videos from the URLs.txt.

  • Why does ffmpeg have to align to the power of 2 when processing crop_left ?

    13 mai 2021, par hansionz

    If performance is considered, why doesn't crop_top \ crop_left \ crop_right perform power-of-two alignment ?
enter image description here

    


  • Make FFMPEG use GPU power

    6 juillet 2022, par Raju

    I'm trying to compress some video files which are of huge size I tried using CPU power using normal command

    


      ffmpeg -i input.mp4 output.mp4


    


    My laptop also has a GPU (NVIDIA 3070 (8GB) card) so I'm trying to make video compression using it as it will be a bit faster I think

    


    I tried searching but found few but they don't use any GPU can someone write command so I can try it :)