
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
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 (40)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP 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 (...) -
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 (...)
Sur d’autres sites (6943)
-
What does the ffmpeg loglevels mean ? [closed]
2 avril 2013, par naxaFFmpeg has several loglevels (see -loglevel). These are, in order :
quiet
,panic
,fatal
,error
,warning
,info
,verbose
anddebug
.But the documentation is not very verbose with explaining their meanings.
It's true that all names are self-documenting enough so they give some intuitive sense for when to use them. But when in doubt, from the user as well as the developer's perspective, in decision situations, it would help to have a clear definition of each level.
I would like to know which one is for what purpose, in order to know when to use them. I couldn't find any more hints on this. Especially on the difference between
panic
,fatal
,error
andinfo
,verbose
,debug
.I think I've found the code for these but I still don't know their exact purposeful 'boundaries'. Is there an explanation on this, (perhaps outside the ffmpeg project) ?
-
What do the ffmpeg loglevels mean ? [closed]
12 juillet 2014, par naxaFFmpeg has several loglevels (see -loglevel). These are, in order :
quiet
,panic
,fatal
,error
,warning
,info
,verbose
anddebug
.But the documentation is not very verbose with explaining their meanings.
It’s true that all names are self-documenting enough so they give some intuitive sense for when to use them. But when in doubt, from the user as well as the developer’s perspective, in decision situations, it would help to have a clear definition of each level.
I would like to know which one is for what purpose, in order to know when to use them. I couldn’t find any more hints on this. Especially on the difference between
panic
,fatal
,error
andinfo
,verbose
,debug
.I think I’ve found the code for these but I still don’t know their exact purposeful ’boundaries’. Is there an explanation on this, (perhaps outside the ffmpeg project) ?
-
avformat/hlsenc : Fix leak of options when initializing muxing fails
16 décembre 2019, par Andreas Rheinhardtavformat/hlsenc : Fix leak of options when initializing muxing fails
hls_mux_init() currently leaks an AVDictionary if opening a dynamic
buffer fails or if avformat_init_output fails. This has been fixed by
moving the initialization resp. the freeing of the dictionary around :
In the former case to a place after opening the dynamic buffer, in the
latter to a place before the check for initialization failure so that it
is done unconditionally.Furthermore, the dictionary is now only copied and freed if the options
in it are actually used (namely when in SEGMENT_TYPE_FMP4 mode).Finally, a similar situation in hls_start() has been fixed, too.
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Reviewed-by : Steven Liu <lq@onvideo.cn>