Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (41)

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

  • avutil/frame : Use av_memdup() for duplicating extended data array

    3 juin, par Andreas Rheinhardt
    avutil/frame : Use av_memdup() for duplicating extended data array
    

    Just do it like av_frame_replace().
    Also "fixes" the swapped order or arguments to av_malloc_array()
    (the first is supposed to be the number of elements, the second
    the size of an element) and therefore part of ticket #11620.

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

    • [DH] libavutil/frame.c
  • avformat/oggenc : don't discard empty packets with no side data

    13 février, par James Almer
    avformat/oggenc : don't discard empty packets with no side data
    

    Theora signals "Output last frame again" with an empty packet.
    To keep the behaviour of 18f24527eb of ignoring side data only packets, as
    generated by the FLAC encoder to propagate updated extradata, also check for
    pkt->side_data_size to choose wheter to mux the paket or not.

    Fixes part of ticket #11451.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/oggenc.c
  • libavcodec/mpeg12dec : append CC data to a53_buf_ref

    14 décembre 2024, par Scott Theisen
    libavcodec/mpeg12dec : append CC data to a53_buf_ref
    

    In mpeg_decode_a53_cc() only the A/53 part 4 CC data ("GA94") is saved between
    frames. The other formats incorrectly created a larger buffer than they use
    since a705bcd763e344fac191e157ffeddc285388b7fa because they did not append to
    the previous data.

    The a53_buf_ref is added to the frame in mpeg_field_start() which will only be
    called in decode_chunks() if not all of the picture data slices are skipped.

    For these formats, utilize the data added to the buffer in case frames are skipped
    (concatenating the CC data until a frame can be exported), in a similar fashion to
    the A/53 part 4 logic.

    Reviewed-by : Marth64 <marth64@proxyid.net>
    Signed-off-by : Marth64 <marth64@proxyid.net>

    • [DH] libavcodec/mpeg12dec.c