Recherche avancée

Médias (91)

Autres articles (85)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

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

  • Convert HLS (m3u8) to MP4 while preserving streaming gaps

    11 décembre 2019, par Tron

    I have a m3u8 file recorded from a live stream and want to convert it to a MP4 file. However, during the live stream, the broadcaster might go offline and online many times and I need to record the offline periods in the MP4. I’ve tried using ffmpeg to convert the m3u8 to MP4 using the following command

    ffmpeg -i in.m3u8 -c copy out.mp4

    However, the streaming gaps are disregarded in the output video. How can I preserve the streaming gaps using the timestamp info of the TS file and show empty content (black or white screen) during the gaps ?

  • How to use ffmpeg to encode isolated motion vectors (using codecview)

    22 juillet 2021, par Temmeh

    I have been successfully using this command to superimpose MPEG motion vectors onto a video :

    


    ffmpeg -v error -flags2 +export_mvs -i input.mp4 -vf codecview=mv=pf+bf+bb -y output.mp4

    


    Now I would like to be able to export an h264 mp4 of just the motion vector arrows, like in this example, without the original video layered underneath. I checked the codecview documentation and and did not find a flag or option to do this.

    


    Any help is appreciated !

    


  • FFMPEG says "No such file or directory" when trying to convert image sequence

    29 janvier 2014, par James Morris

    From the shell, when I specify a sequence of images via %d in the input filename, FFMPEG insists "No such file or directory", despite evidence to the contrary. Looking online, I haven't managed to find any references to generating video from a sequence of images using FFMPEG where %d is not used, yet it seems to fail here.

    My images should be identified by FFMPEG from img%06d.gif. Issuing ls img[0-9][0-9][0-9][0-9][0-9][0-9].gif succeeds in the very same directory I issue the FFMPEG command.

    The command I use is :

    ffmpeg  -i img%06d.gif -c:v libx264 -r 30 -pix_fmt yuv720p test.mp4

    What could possibly be going wrong ???