Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (104)

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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • 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

Sur d’autres sites (7495)

  • ffmpeg download from m3u8 link but not from local m3u8 file

    15 septembre 2022, par k4anubhav

    I downloaded a master m3u8 from a link and now I want to download by
ffmpeg -i test.m3u8 -acodec copy -vcodec copy out.mp4
it to mp4 but now it not downloading
and getting an error Output file #0 does not contain any stream
but when I use the link (like https://google.com/master.m3u8) it downloads the video file
ffmpeg -i https://google.com/master.m3u8 -acodec copy -vcodec copy out.mp4

    


    I want to download the video using local m3u8 file

    


    PS. my session is not out Vlc still show the VIDEO

    


  • hwcontext_vulkan : unify download/upload functions

    24 novembre 2020, par Lynne
    hwcontext_vulkan : unify download/upload functions
    

    They were identical, save for variable names and order.

    • [DH] libavutil/hwcontext_vulkan.c
  • ffmpeg not letting me use variables in place of actual urls or start and stop times to download a portion of a video

    25 novembre 2020, par sathu-beep

    so I have been trying to download some videos using ffmpeg. Im using the subprocess.call('ffmpeg -i $(youtube-dl -f 133 --get-url  l) -ss 0.4 -to 5.5 -c:v copy -c:a copy happy.mp4',shell=True) command, however, It works fine when I replace the l after "get url" with an actual url, but when I set l as a variable that points to a url, it takes l literally, and says that l is an invalid url. How do I get ffmpeg to recognize that l is a variable and use the url stored in it. Ive tried putting quotes, turning it into a string, and nothing works. Any help is appreciated. It also wont let me use variables for stop and start times