Recherche avancée

Médias (3)

Mot : - Tags -/spip

Autres articles (37)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

  • fftools/ffmpeg_demux : Don't use fake object with av_opt_eval

    6 octobre 2023, par Andreas Rheinhardt
    fftools/ffmpeg_demux : Don't use fake object with av_opt_eval
    

    The av_opt_eval family of functions emits errors messages on error
    and can therefore not be used with fake objects when the AVClass
    has a custom item_name callback. The AVClass for AVCodecContext
    has such a custom callback (it searches whether an AVCodec is set
    to use its name). In practice it means that whatever is directly
    after the "cc" pointer to the AVClass for AVCodec in the stack frame
    of ist_add() will be treated as a pointer to an AVCodec with
    unpredictable consequences.

    Fix this by using an actual AVCodecContext instead of a fake object.

    Reviewed-by : Anton Khirnov <anton@khirnov.net>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] fftools/ffmpeg_demux.c
  • avformat/webpenc : Fix memleak when using invalid packets

    18 mars 2021, par Andreas Rheinhardt
    avformat/webpenc : Fix memleak when using invalid packets
    

    The WebP muxer sometimes caches a packet it receives to write it later ;
    yet if a cached packet is too small (so small as to be invalid),
    it is cached, but not written and not unreferenced. Such a packet leaks,
    either by being overwritten by the next packet or because it is never
    unreferenced at all.

    Fix this by not caching unusable packets at all ; and error out on
    invalid packets.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/webpenc.c
  • asfdec : increment nb_streams right after the stream allocation

    23 juillet 2015, par Alexandra Hájková
    asfdec : increment nb_streams right after the stream allocation
    

    to prevent possible memory leaks

    Signed-off-by : Anton Khirnov <anton@khirnov.net>

    • [DBH] libavformat/asfdec.c