
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (97)
-
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP 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 (...) -
Emballe médias : à quoi cela sert ?
4 février 2011, parCe plugin vise à gérer des sites de mise en ligne de documents de tous types.
Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;
Sur d’autres sites (9157)
-
lavc/golobm : Add set_ue_golomb_long to support up to 2^32 -2.
14 juin 2017, par Jun Zhaolavc/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> -
avformat/hlsenc : add option hls_init_time to set init hls window segment duration
27 août 2016, par Steven Liuavformat/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 TachijianReviewed-by : Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
pthread_frame : do not attempt to unlock a mutex on the wrong thread
23 mars 2017, par wm4pthread_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>