Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (2)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (2814)

  • Where to download avcodec.dll ? [closed]

    29 juin, par Олег Ю.

    I see in the folder of some application FFMPEG files avcodec.dll, avformat.dll, avutil.dll, etc.
They are all old version of FFMPEG. I wanted to update them, but I did not find where to download them on the FFMPEG website.
Are these complete libraries available for download ? Or do they exist only in development files and the authors of some application create FFMPEG .dll files themselves ? In other words, avcodec.dll files from different applications are not interchangeable ?
Help me figure it out.

    


  • Download HLS (m3u8) file with all audio, video tracks and subtitles [closed]

    24 juillet 2024, par Eric Nebe

    It is pretty easy to download a m3u8 file and convert it to mp4 format with Ffmpeg tool, but is there a way to download the complete HLS content with all audio & video tracks as well as subtitles and store it in a single file ?

    


    I've been researching days for that information but couldn't find anything, all articles are aimed to show how to download a single audio and video track to a mp4/ts files

    


    Thank you everyone in advance

    


    I tried and managed to download the m3u8 file into mp4/ts only :

    


    ffmpeg -y -loglevel verbose -i "http://exampleurl.com/file.m3u8" -c copy -f mpegts output.mp4

    


  • download video fragment by size usnig ffmpeg

    6 mars 2023, par Ivan Dobryaev

    Suppose I have some video url. I want to download video fragment by size (equal time intervals may have different sizes).

    


    I have some different ways :

    


      

    1. The best one. Get list of start and finish time points for each fragment (without download full video). For example : [(0, 15, 10Mb), (15, 40, 10Mb), etc]

      


    2. 


    3. Parallel download each fragment with size 10Mb

      


    4.