Recherche avancée

Médias (91)

Autres articles (33)

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

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (4645)

  • Media container for H264 and Opus

    27 avril 2013, par Ricky

    I am looking for a media container that can hold H264 video and Opus audio,
    allowing me to perform playback using VLC or equivalent. H264 is a hard
    requirement, and I picked Opus because of the licensing benefits.

    Wikipedia suggests
    that .ogg is what I'm looking for.

    However, when I looked at the VLC and FFMPEG source code, neither included H264
    support in their ogg demuxer (VLC source suggests that it only support Theora,
    Vorbis, and CMML, FFMPEG had something similar).

    Is there another container I can use ?

    Alternatively, I can also alternative audio encoder such as aac. But all aac encoders I found have less than appealing licensing associated with them (GPL).

  • How to extract Programme service data from radio stream

    12 janvier 2017, par NathanK

    I’m using ffmpeg to save a publicly available radio stream to mp3 files. I would like to know what the schedule is for the radio station before I begin downloading the stream. In other words, I’d like to know if a radio stream contains something akin to the electronic program guide and, if so, is there a library/api available on linux that will allow me to extract this data. I know already that a radio signal can contain a program associated data field (I’m not sure how to extract this either).

    I’ve searched on stackoverflow, I wasn’t able to find anything similar. After searching for 2 hours on google to no avail, I’m choosing to post this question here. Any help is greatly appreciated.

  • Details about the type of the filtered frame used in FFmpeg

    13 décembre 2015, par sunzhida

    I am new in multimedia analysis.

    I am trying to extract key frames from .mp4 and .flv format videos by using FFmpeg. The problem is that I was confused by the parameters used in the command (Select only I-frames).

    select='eq(pict_type\,I)'

    The parameters are used to choose the types of filtered frame and It can assume one of the following values :

    I P B S SI SP BI

    After searching on Wikipedia, I have got some basic concepts on I, P, B frames but still cannot tell the difference among S, SI, SP and BI. How to decide which type of frame should I use in my command line ?