Recherche avancée

Médias (91)

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (10263)

  • Revision 38415 : Un boutons dans le menu de statitiques menant vers les activités du ...

    28 mai 2010, par kent1@… — Log

    Un boutons dans le menu de statitiques menant vers les activités du journal On commence à factoriser pour faire des visites sur objet/id_objet

  • Is this the best way to decrease the number of failures when downloading m3u8 ?

    26 juillet 2022, par zackchess1

    I have a bunch of m3u8 links that I am trying to download.

    


    When I use ffmpeg, I get an average of 8/10 videos. The remaining 2 videos simply don't download. I use this command :

    


    ffmpeg -i http://.../playlist.m3u8 -c copy -bsf:a aac_adtstoasc output.mp4

    


    I have seen suggestions to use yt-dlp and aria2c to reduce the number of failures. Do either of these actually affect failure rates ?

    


    Would you suggest using :

    


    yt-dlp M3U8LINK

    


    OR

    


    yt-dlp --downloader aria2c M3U8LINK

    


    IF NOT, WHAT COMMAND DECREASES THE NUMBER OF FAILURES ? Thanks.

    


  • How do i overlay frame number on video in python

    11 mai 2022, par Anuj Saxena

    How do i watermarking a video with the current frame number ?
My command is
[ ffmpeg -i input -vf "drawtext=fontfile=Arial.ttf : text='%frame_num' : start_number=1 : x=(w-tw)/2 : y=h-(2*lh) : fontcolor=black : fontsize=20 : box=1 : boxcolor=white : boxborderw=5" -c:a copy output.mp4 ]

    


    when I run this command in the terminal I executed my task successfully. but when I used this command in IDE (pycharm) it treated text='%frame_num as a variable IDE throws an error and when i replace frame_num with 1 or 0 or any number then IDE executed my code and make a video but this video has no watermark of the current frame number.

    


    what should I do ??

    


    import os

cmd =f'''ffmpeg -i input.mp4 -vf "drawtext=fontfile=Arial.ttf: text='%{frame_num}': start_number=1: x=(w-tw)/2: y=h-(2*lh): fontcolor=black: fontsize=20: box=1: boxcolor=white: boxborderw=5" -c:a copy output.mp4'''

print(cmd)

os.system(cmd)