Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (104)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • libavformat/dashenc : Prevent writing manifest files multiple times

    8 avril 2019, par joepadmiraal
    libavformat/dashenc : Prevent writing manifest files multiple times
    
    • [DH] libavformat/dashenc.c
  • avfilter/vf_framerate : do not calculate scene change score multiple times for the...

    10 décembre 2017, par Marton Balint
    avfilter/vf_framerate : do not calculate scene change score multiple times for the same frame
    

    This speeds up the filter, and also fixes scene change detection score which is
    reduced based on the difference of the current MAFD to the preivous MAFD.
    Obviously if we compare two frames twice, the difference will be 0...

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavfilter/vf_framerate.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(&#x27;ffmpeg -i $(youtube-dl -f 133 --get-url  l) -ss 0.4 -to 5.5 -c:v copy -c:a copy happy.mp4&#x27;,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

    &#xA;