Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (99)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Les sons

    15 mai 2013, par
  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (7033)

  • iterate through linex directory to apply same line of code

    25 juillet 2018, par J.D

    In my terminal (Linux), I have a directory of videos (001.mp4, 002.mp4 ... 300.mp4) that I want to split into frames using ffmpeg (ffmpeg -i 1.mp4 -vf fps=20 frame%04d.jpg -hide_banner). How can I apply this code to every video in the directory, specifically making the frames generated in a folder labeled after the video’s name (001.mp4 frames generated in a folder called 001). Running the code on a single video would generate the frames directly in that working directory. Note : the ffmpeg code must be changed to fit the filename each time.

  • lavf/hlsenc : Do not mix declarations and code.

    16 novembre 2018, par Carl Eugen Hoyos
    lavf/hlsenc : Do not mix declarations and code.
    

    Fixes the following warnings :
    libavformat/hlsenc.c : In function 'hls_write_trailer' :
    libavformat/hlsenc.c:2364:17 : warning : ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
    uint8_t *buffer = NULL ;

    libavformat/hlsenc.c:2372:17 : warning : ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
    int byterange_mode = (hls->flags & HLS_SINGLE_FILE) || (hls->max_seg_size > 0) ;

    libavformat/hlsenc.c:2379:13 : warning : ISO C90 forbids mixed declarations and code [-Wdeclaration-after-statement]
    int range_length = 0 ;

    • [DH] libavformat/hlsenc.c
  • How to convert ffmpeg command to Python code

    12 septembre 2020, par mpo

    I would like to convert the command ffmpeg -i input.mp4 -i input.wav -c:v copy -map 0:v:0 -map 1:a:0 -c:a aac -b:a 192k output.mp4 to a Python function. How can I do this ?