
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (105)
-
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 (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (7938)
-
Firefox, Chrome, Safari have grey background for MP4 HTML5 video
5 avril 2016, par JamesAny video (that I can make) with a white background becomes grey in Firefox, Chrome, and Safari (it is white in IE). Well, on my Windows machine it is grey, on my Android phone/tablet and Mac it is white...
I am using ffmpeg to encode the video. If I encode it as webm, the background is white.
See : https://jsfiddle.net/Lbg8f6ck/
I found a hack that fixes it for Chrome :
<video style="-webkit-filter:brightness(108.5%);"></video>code>
But it does not work for Firefox or Safari.
Another hack for Firefox :
filter:brightness(1.085)
But for some reason setting it through JavaScript does not work.
A few versions ago the background was white for Chrome, then became grey again...
The question is : Why is white grey ?
Is it an issue with the video or with Chrome, Firefox, Safari in general ? (How can they not support white ?)
Is it possible to get a white background ?
Any hacks, workarounds ?
-
avutil/mem : remove av_realloc / av_malloc incompatibility warning
21 avril 2015, par Michael Niedermayeravutil/mem : remove av_realloc / av_malloc incompatibility warning
memalign() is not guranteed to be compatible with free() or realloc()
and for platforms in this category we have —enable-memalign-hack
(which should be enabled automatically if such system is detected)
Trying to somehow half support systems that can free() memalign memory
but not reallocate it seems not worth the amount of work needed to
keep 2 then incompatible allocation systems and ensure their
seperation. That is unless this would affect a major platform
on which we want to avoid the memalign hack codeThe warnings also cause wasted time and effort as people try
to maintain a separation that does not exist currently.Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>
-
mencoder generate mp4 h.264 from jpg playback stops in html videotag chrome
10 septembre 2013, par jedimortenSo I have some images from which I create a video with mencoder.
mencoder -idx -nosound -noskip -of lavf -lavfopts format=mp4 -ovc x264 -x264encopts pass=1:bitrate=2000:crf=24 -o output.mp4 -mf fps=15 'mf://@files.txt'
(where files.txt is a list of all the files sorted in the right order)
The videos is created without problems, it plays fine in desktop-player like vlc, but in chrome (on mac) and chromium (ubuntu) some of the videoes has "breakpoints" in which the video just stops.
Take a look at this fiddle.
I made an ugly hack (see fiddle) to force a continued play even if the video is damaged, but this does not look very nice when the video has a lot of them "breakpoints".
For several reasons I need to be using html, so flash would only be a last last resort.
Any views on what may be causing these breakpoints ? Or a nicer ugly hack to force contiuned playback ?