Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (12)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

Sur d’autres sites (5952)

  • Retrieving and Saving media metadata using FFmpeg

    22 mars 2024, par Rahul Patwa

    I want to read the metadata in media files and then save that metadata in a text/xml file, so that I can later insert that data in my database. I would prefer to use ffmpeg.

    



    Also is the same thing possible with MediaInfo ?? I know I can get the metadata for individual tracks using MediaInfo, but I would want to automate it ; as in whenever a new media file is found, read its metadata and then store it in a txt/xml file.

    



    Or, is there any other tool/utility/API that I can use for this ?

    


  • Retrieving and Saving media metadata using FFmpeg

    10 juin 2015, par Rahul Patwa

    I want to read the metadata in media files and then save that metadata in a text/xml file, so that I can later insert that data in my database. I would prefer to use ffmpeg.

    Also is the same thing possible with MediaInfo ?? I know I can get the metadata for individual tracks using MediaInfo, but I would want to automate it ; as in whenever a new media file is found, read its metadata and then store it in a txt/xml file.

    Or, is there any other tool/utility/API that I can use for this ?

  • Extract RGB values from a AVFrame (FFMPEG) in C++

    9 novembre 2011, par Extrakun

    I am currently trying to read in video frames by using FFMPEG. The format is PIX_FMT_RGB24 ; For each frame, the RGB values are all combined together in frame->data[0] (Where frame is of the type AVFrame).

    How do I extract the individual R, G and B values for each frame ? This is for processing the video. I would think it would work the same way as extracting the RGB values from a bitmap too. Thanks !