Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (100)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (3232)

  • 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
  • avformat/udp : Fix temporary buffer race

    8 juin 2024, par Michael Niedermayer
    avformat/udp : Fix temporary buffer race
    

    Fixes : CID1551679 Data race condition
    Fixes : CID1551687 Data race condition

    Sponsored-by : Sovereign Tech Fund
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/udp.c