Recherche avancée

Médias (91)

Autres articles (89)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (3910)

  • How to download/convert multiple streams to .ts with FFmpeg ? [on hold]

    28 août 2016, par Leonardo

    How to download multiple streams .m3u8 to .ts at one go.
    I have a lot of link use .m3u8 streams
    but I don’t know how make the download with FFmpeg.

  • What's difference between using ffmpeg vs Native Hls to download M3U8 file ?

    11 octobre 2017, par Mike Ross

    I use youtube-dl to download M3U8 video (Not live streaming )
    But when I download video using Ffmpeg, if i interrupt download it’s not possible to resume downloads
    When i use --hls-prefer-native tag I’m able to resume downloads.
    My question is what’s difference between the both ? And which is best between these two ?
    Only difference I can find is that the video created using Native Hls has no thumbnail in Ubuntu File Manager !!

  • How do I add environment variables to path in python ?

    13 mai 2024, par JustThisWeeb

    I made a python script to install FFmpeg and add it to path in Windows, but it seemed to have no effect at all. It doesn't give me any errors or anything. It literally just does nothing at all.

    


    This was the code I used :

    


    os.environ["Path"] += f"{os.getcwd()}/ffmpeg-7.0-essentials_build/bin"
os.environ.update()


    


    and I tried several iterations of "path" including "PATH", "Path", "path" and none of them made a difference.
I also tried making a new variable :

    


    new_environ = os.environ["Path"] + f"{os.getcwd()}/ffmpeg-7.0-essentials_build/bin"
os.environ["Path"] = new_environ
os.environ.update()


    


    Which again made no difference.

    


    I know there are other questions like that, but to be honest none of the ones I saw were helpful.