Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (62)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • avcodec/vaapi : free slice_buffers when decoding failed

    19 septembre 2018, par Linjie Fu
    avcodec/vaapi : free slice_buffers when decoding failed
    

    If vaEndPicture() failed in ff_vaapi_decode_issue(), free
    the pic->slice_buffers.

    Fixes the memory leak issue in ticket #7385

    Signed-off-by : Linjie Fu <linjie.fu@intel.com>
    Signed-off-by : Mark Thompson <sw@jkqxz.net>

    • [DH] libavcodec/vaapi_decode.c
  • avcodec/libdav1d : properly free all output picture references

    8 janvier 2019, par James Almer
    avcodec/libdav1d : properly free all output picture references
    

    Dav1dPictures contain more than one buffer reference, so we're forced to use the
    API properly to free them all.

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

    • [DH] libavcodec/libdav1d.c
  • avformat/id3v2 : Fix double-free on error

    10 novembre 2019, par Andreas Rheinhardt
    avformat/id3v2 : Fix double-free on error
    

    ff_id3v2_parse_priv_dict() uses av_dict_set() with the flags
    AV_DICT_DONT_STRDUP_KEY and AV_DICT_DONT_STRDUP_VAL. In this case both
    key and value are freed on error (and owned by the destination
    dictionary on success), so that freeing them again on error is a
    double-free and therefore forbidden. But it nevertheless happened.

    Fixes CID 1452489 and 1452421.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/id3v2.c