Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (63)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

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

  • 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
  • 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
  • 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