Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (32)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

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

  • codec_desc : mark some lossless audio codecs as intraonly.

    3 avril 2017, par Ronald S. Bultje
    codec_desc : mark some lossless audio codecs as intraonly.
    

    Fixes tsan warnings in several audio codecs (flac, alac, wavpack, tta
    and tak) that look like this :

    WARNING : ThreadSanitizer : data race (pid=14340)
    Read of size 4 at 0x7d64000169d8 by main thread (mutexes : write M1335) :
    #0 update_context_from_thread src/libavcodec/pthread_frame.c:284 (ffmpeg+0x000000dc795f)
    [..]
    Previous write of size 4 at 0x7d64000169d8 by thread T1 (mutexes : write M1333) :
    #0 wavpack_decode_block src/libavcodec/wavpack.c:1012 (ffmpeg+0x00000112b175)

    • [DH] libavcodec/avcodec.h
    • [DH] libavcodec/codec_desc.c
  • ffmpeg : make transcode_init_done atomic.

    31 mars 2017, par Ronald S. Bultje
    ffmpeg : make transcode_init_done atomic.
    

    Should fix tsan warnings in fate-fifo-muxer-h264/wav :

    WARNING : ThreadSanitizer : data race (pid=26552)
    Write of size 4 at 0x000001e0d7c0 by main thread :
    #0 transcode_init src/ffmpeg.c:3761 (ffmpeg+0x00000050ca1c)
    [..]
    Previous read of size 4 at 0x000001e0d7c0 by thread T1 :
    #0 decode_interrupt_cb src/ffmpeg.c:460 (ffmpeg+0x0000004fde19)

    • [DH] ffmpeg.c
  • pthread_frame : call update_context_from_user() after acquiring lock.

    3 avril 2017, par Ronald S. Bultje
    pthread_frame : call update_context_from_user() after acquiring lock.
    

    Otherwise the thread may still be in the middle of decoding a previous
    frame, which would effectively trigger a race condition on any field
    concurrently read and written.

    In practice, this fixes tsan warnings like the following :

    WARNING : ThreadSanitizer : data race (pid=17380)
    Write of size 4 at 0x7d64000160fc by main thread :
    #0 update_context_from_user src/libavcodec/pthread_frame.c:335 (ffmpeg+0x000000dca515)
    [..]
    Previous read of size 4 at 0x7d64000160fc by thread T2 (mutexes : write M1821) :
    #0 ff_thread_report_progress src/libavcodec/pthread_frame.c:565 (ffmpeg+0x000000dcb08a)

    • [DH] libavcodec/pthread_frame.c