Recherche avancée

Médias (0)

Mot : - Tags -/content

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (33)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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

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

Sur d’autres sites (4971)

  • 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.

    


  • 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.

    


  • 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