Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (57)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • Revision f4ce20c530 : Removed unnecessary type cast Change-Id : I0f2d5155ec042e9b5cbe9a9d6b186b121ed77

    18 février 2014, par Yaowu Xu

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c



    Removed unnecessary type cast

    Change-Id : I0f2d5155ec042e9b5cbe9a9d6b186b121ed7737f

  • avcodec/aac/aacdec_usac : remove unnecessary cast

    2 juin 2024, par James Almer
    avcodec/aac/aacdec_usac : remove unnecessary cast
    

    Fixes "libavcodec/aac/aacdec_usac.c(543) : error C2440 : 'type cast' : cannot convert from 'GetBitContext' to 'GetBitContext'"
    from msvc.

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

    • [DH] libavcodec/aac/aacdec_usac.c
  • avutil/opt : Don't cast when the result might be misaligned

    25 mars 2024, par Andreas Rheinhardt
    avutil/opt : Don't cast when the result might be misaligned
    

    A pointer conversion is UB if the resulting pointer is not
    correctly aligned for the resultant type, even if no
    load/store is ever performed through that pointer (C11 6.3.2.3 (7)).

    This may happen in opt_copy_elem(), because the pointers are
    converted even when they belong to a type that does not guarantee
    sufficient alignment.

    Fix this by deferring the cast after having checked the type.
    Also make the casts -Wcast-qual safe and avoid an indirection
    for src.

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

    • [DH] libavutil/opt.c