Recherche avancée

Médias (91)

Autres articles (60)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (6882)

  • dxva : fix some warnings

    22 juin 2017, par wm4
    dxva : fix some warnings
    

    Some existed since forever, some are new.

    The cast in get_surface() is silly, but unless we change the av_log
    function signature, or all callers of ff_dxva2_get_surface_index(), it’s
    needed to remove the const warning.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/dxva2.c
  • libavfilter/scale : Populate ow/oh when using 0 as w/h

    14 juin 2017, par Kevin Mark
    libavfilter/scale : Populate ow/oh when using 0 as w/h
    

    The input width and height is known at parse time so there's no
    reason ow/oh should not be usable when using 0 as the width or
    height expression.

    Previously in "scale=0:ow" ow would be set to "0" which works,
    conveniently, as "scale=0:0" is perfectly valid input but this breaks
    down when you do something like "scale=0:ow/4" which one could
    reasonably expect to work as well, but does not as ow is 0 not the
    real value.

    This change handles the 0 case for w/h immediately so the ow/oh
    variables work as expected. Consequently, the rest of the code does
    not need to handle 0 input. w/h will always be > 0 or < 0.

    The second explicit (int) cast ensures that ow/oh appear as integers
    as a user might expect when dealing with pixel dimensions.

    Signed-off-by : Kevin Mark <kmark937@gmail.com>
    Signed-off-by : Ronald S. Bultje <rsbultje@gmail.com>

    • [DH] libavfilter/scale.c
  • avcodec/wavpack : Fix undefined integer negation

    19 juin 2017, par Michael Niedermayer
    avcodec/wavpack : Fix undefined integer negation
    

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

    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/wavpack.c