Recherche avancée

Médias (1)

Mot : - Tags -/ticket

Autres articles (67)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (7191)

  • Anomalie #1990 (Résolu) : Bug insertion image en création d’article

    2 mars 2011, par cedric -

    Résolu par reecriture complète du code de gestion des documents en extension medias dans la branche developpement

  • Revision 3989 : Une nouvelle action permettant de récupérer les documents d’un article ...

    20 septembre 2010, par kent1 — Log

    Une nouvelle action permettant de récupérer les documents d’un article original On l’utilise dans l’autre action (le code est identique)

  • Using ffmpeg with Python3 subprocess to convert multiple PNGs to a video

    17 décembre 2016, par ylnor

    I am using Python3, subprocess and ffmpeg to convert multiple PNG images into a single video.

    I have 400 PNG numbered as "00001.png".

    This call for one single specific image to a a one-frame-video works :

    subprocess.call(["ffmpeg","-y","-r","24","-i", "00300.png","-vcodec","mpeg4", "-qscale","5", "-r", "24", "video.mp4"])

    However, when I try some methods seen online for calling all of my images formated as "#####.png" using "%05d.png" as below, it does not work anymore :

    subprocess.call(["ffmpeg","-y","-r","24","-i", "%05d.png","-vcodec","mpeg4", "-qscale","5", "-r", "24", "video.mp4"])

    I receive the error : "%05d.png: No such file or directory".

    I have the feelling that the above syntax is proper to Python2 and not working on my python3 but can’t find the correct python3 syntax anywhere.

    Thanks in advance for your help