Recherche avancée

Médias (91)

Autres articles (43)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

Sur d’autres sites (4682)

  • Download from sites that require a login using ffmpeg

    13 septembre 2021, par FastOFF

    I want to download HLS videos from a site that needs to be logged in using FFmpeg, meaning I have to enter my username and password to access the videos, and I do not know how to enter the login information through FFmpeg...
Can anyone help me ?

    


  • Which command converts a video into exactly 70 still images ?

    9 mars 2014, par Dead Girl

    Using ffmpeg, which command converts a video into exactly 70 still images ?

    Meaning, let's say the video file is 80 seconds long. 80/70 = 1.1428571428571428571428571428571, ie take a still image each 1143 ms amounting to 70 still images.

  • FFMPEG Credits using png [closed]

    21 août 2023, par Tarek Sawah

    Can I add credits roll-up to a video using a png file and make it show at a certain time and last for 20 seconds ?
I have a 5:30-minute long video file, and I have a PNG file that's 7000 pixels high with transparent background, using ffmpeg, can I make the PNG file slide from bottom to top at a certain second and last for 20 seconds max while making sure it doesn't cover the video file and still have a transparent background ?
I tried creating a credits video and combining it with the original video, but I can't get the transparent background for some reason which is frustrating.
This is the code I used to creat the credits video :

    


    ffmpeg -f lavfi -i color=color=0xff0000@0.0:s=1920x1080,format=rgba -loop 1 -t 0.5 -i "rollup_test.png" -filter_complex "[1:v]colorkey=0xff0000:0.2:0.0,scale=1920:-2,setpts=if(eq(N\,0)\,0\,1+1/0.05/TB),fps=30[fg]; [0:v][fg]overlay=y=-'t*h*0.05':eof_action=endall[v]" -map "[v]" -pix_fmt yuv420p -preset ultrafast -y credits.mp4