Recherche avancée

Médias (1)

Mot : - Tags -/stallman

Autres articles (112)

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (9722)

  • avutil/common : Fix integer overflow in av_clip_uint8_c() and av_clip_uint16_c()

    14 février 2018, par Michael Niedermayer
    avutil/common : Fix integer overflow in av_clip_uint8_c() and av_clip_uint16_c()
    

    Fixes : 5567/clusterfuzz-testcase-minimized-5769966247739392
    Fixes : runtime error : negation of -2147483648 cannot be represented in type 'int' ; cast to an unsigned type to negate this value to itself

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/common.h
  • avcodec/pixlet : fixes integer overflow in read_highpass()

    17 août 2017, par Michael Niedermayer
    avcodec/pixlet : fixes integer overflow in read_highpass()
    

    Fixes : runtime error : negation of -2147483648 cannot be represented in type 'int32_t' (aka 'int') ; cast to an unsigned type to negate this value to itself
    Fixes : 2879/clusterfuzz-testcase-minimized-6317542639403008

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/pixlet.c
  • avcodec/webp : Check more directly for invalid codes

    18 avril, par Andreas Rheinhardt
    avcodec/webp : Check more directly for invalid codes
    

    Don't rely on invalid codes leading to get_vlc2() returning
    - 1, which then gets converted to an uint8_t, i.e. to 255
    and runs afoul of a length check later. After all, get_vlc2()
    could be changed to return something else which may
    be valid when cast to uint8_t.

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

    • [DH] libavcodec/webp.c