Recherche avancée

Médias (91)

Autres articles (70)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (3920)

  • Download HLS ( HTTP ) Stream video using python

    19 mai 2016, par LeDerp

    I need to download a streaming video(from a URL) using python the command line argument would be :

    ffmpeg -i URL stream.mp4

    I know I can use the subprocess command

    subprocess.call('ffmpeg -i '+ URL +' stream.mp4', shell=True)

    Is there any alternative like a API that I can use instead of using subprocess command

  • How to can I redirect the image frames of a video outputted by ffmpeg to a python list in a python script ?

    16 novembre 2020, par Ashutosh Holla

    I am extracting frames from a CCTV video of certain duration using ffmpeg command. The code written in the python script is as follow :

    


    import subprocess as sp

sp.call('ffmpeg -i c21.avi -ss 00:10:00 -to 00:11:00  op2/frame_%1d.jpg', shell=True).


    


    However I want to store every image frames in a python list rather to a file. What are the changes that I need to do ?. I have explored opencv cv2.VideoCapture method which resulted in assertion error after processing certain frames of the video.

    


  • How to make FFmpeg convert a PNG sequence into a WEBP sequence, instead of making a single animated WEBP

    10 août 2022, par nmkd

    This command converts a PNG sequence into a JPG sequence :

    


    ffmpeg -i in/%8d.png out/%8d.jpg

    


    However, when using the same command with WEBP :

    


    ffmpeg -i in/%8d.png out/%8d.webp

    


    It will put all frames into a single WEBP, which is animated.

    


    I have not found a way to tell ffmpeg to instead create one WEBP per input PNG.

    


    Is this somehow possible ? I'd like to avoid using any shell scripting/loops.