Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (52)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

  • pthread_frame : do not attempt to unlock a mutex on the wrong thread

    23 mars 2017, par wm4
    pthread_frame : do not attempt to unlock a mutex on the wrong thread
    

    async_mutex has is used in a very strange but intentional way : it is
    locked by default, and unlocked only in regions that can be run
    concurrently.

    If the user was calling API functions to the same context from different
    threads (in a safe way), this could unintentionally unlock the mutex on
    a different thread than the previous lock operation. It’s not allowed by
    the pthread API.

    Fix this by emulating a binary semaphore using a mutex and condition
    variable. (Posix semaphores are not available on all platforms.)

    Tested-by : Michael Niedermayer <michael@niedermayer.cc>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/pthread_frame.c
  • avformat/hlsenc : add option hls_init_time to set init hls window segment duration

    27 août 2016, par Steven Liu
    avformat/hlsenc : add option hls_init_time to set init hls window segment duration
    

    recover segments duration time by hls_time after init hls window.
    This is reuqested by Ibrahim Tachijian

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/hlsenc.c
  • lavc/golobm : Add set_ue_golomb_long to support up to 2^32 -2.

    14 juin 2017, par Jun Zhao
    lavc/golobm : Add set_ue_golomb_long to support up to 2^32 -2.
    

    add set_ue_golomb_long to support up to 2^32-2.

    Reviewed-by : Mark Thompson <sw@jkqxz.net>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Jun Zhao <jun.zhao@intel.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/golomb.h