Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (58)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

Sur d’autres sites (5493)

  • swscale/utils : Fix potential race when initializing xyz tables

    24 mai, par Andreas Rheinhardt
    swscale/utils : Fix potential race when initializing xyz tables
    

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

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

    8 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 variables |flags|, |cpuflags_mask|, and |checked| in
    libavutil/cpu.c are 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.

    Remove the |checked| variable because the invalid value of -1 for
    |flags| can be used to indicate the same condition. Rename |flags| to
    |cpu_flags| and move it to file scope.

    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>

    • [DBH] libavutil/Makefile
    • [DBH] libavutil/cpu.c
    • [DBH] libavutil/cpu.h
    • [DBH] libavutil/tests/.gitignore
    • [DBH] libavutil/tests/cpu_init.c
    • [DBH] tests/fate/libavutil.mak
  • lavfi : fix race when func rets holder is NULL

    28 mars 2017, par Clément Bœsch
    lavfi : fix race when func rets holder is NULL
    

    If ret is NULL, a dummy common holder is created to hold *all* the
    parallel function returns, which gets written concurrently. This commit
    simplify the whole logic by simply not writing to that holder when not
    set.

    • [DH] libavfilter/pthread.c