Recherche avancée

Médias (91)

Autres articles (7)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

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

Sur d’autres sites (3147)

  • FFMPEG/MP4BOX Creating .mp4 with .h262, .acc x2, and srt

    2 mai 2015, par can

    I’m going to attempt to re-ask this question.

    What I am wanting to do, is create one new mp4 file, which will include, one video file, two audio files and one subtitle file. I am wanting to create a mp4 file that I can playback on my iOS devices and computers.
    The files are as followed :

    • video.h264 23.976 fps
    • audioen.aac 44.1 KHz, 2, English
    • audiojp.aac 48.0 KHz, 5.1, Japanese
    • sub.srt

    Now this srt has been converted from a mks subtitle file from a Matroska file.
    I would like the English track to play by default, the Japanese track to be an option and the subtitle file to be another option.

    I am having a very hard time trying to work both, mp4box and ffmpeg to create this one file, can somebody please help me with the command.

  • How to split a video into individual encoded frames ?

    23 mai 2015, par Asik

    Source video is H264 in an mp4 container, I’m trying to split it into individual encoded frames. I tried with the following command line :

    ffmpeg -i "input.mp4" -f image2 "%d.h264"

    But that creates jpegs with the extension "h264", rather than actual H.264 frames.

  • Extract individual frames as a buffer from a video

    30 août 2022, par mgo

    I'm trying to process a video using tensorflow in node.js (i.e. on the server - I don't have a web page). I need to process each frame in the video individually. I see some people are using ffmpeg to generate individual image files from the video but that seems wasteful as it creates files on the filesystem. I would prefer to grab each frame as a base64 string in memory. I've got this working using OpenCV4Node but am wondering if there are any lighter weight solutions. Is anyone already doing this ? Any help would be appreciated :-)