Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (83)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (9392)

  • threadprogress : reorder instructions to fix race.

    6 février, par Ronald S. Bultje
    threadprogress : reorder instructions to fix race.
    

    Fixes #11456.

    • [DH] libavcodec/threadprogress.c
  • Revert "avformat/udp : Fix temporary buffer race"

    21 juillet 2024, par Michael Niedermayer
    Revert "avformat/udp : Fix temporary buffer race"
    

    This is not needed

    This reverts commit 7b2f67ea77f4c856311946f153e5eed99b0128f7.

    • [DH] libavformat/udp.c
  • avutil : fix data race in av_get_cpu_flags()

    7 décembre 2016, par Wan-Teh Chang
    avutil : fix data race in av_get_cpu_flags()
    

    Make the one-time initialization in av_get_cpu_flags() thread-safe. The
    static variable |cpu_flags| in libavutil/cpu.c is read and written using
    normal load and store operations. These are considered as data races.
    The fix is to use atomic load and store operations.

    The fix can be verified by running the libavutil/tests/cpu_init.c test
    program under ThreadSanitizer :
    ./configure —toolchain=clang-tsan
    make libavutil/tests/cpu_init
    libavutil/tests/cpu_init

    There should be no warnings from ThreadSanitizer.

    Co-author : Dmitry Vyukov of Google, who suggested the data race fix.

    Signed-off-by : Wan-Teh Chang <wtc@google.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavutil/cpu.c
    • [DH] libavutil/cpu.h