FIXME: support video/x-flv

This commit is contained in:
Astro 2010-11-15 01:54:40 +01:00
parent d17ab22d79
commit 7b78aeaf67
1 changed files with 6 additions and 0 deletions

View File

@ -49,6 +49,9 @@ function addPlayer(container, res) {
fallback.attr('data', movie);
fallback.find('param[name="movie"]').attr('value', movie);
}
/* FIXME:
* support video/x-flv
*/
});
/* Add stuff to page */
@ -120,4 +123,7 @@ function canPlayVideo(type) {
function canFallback(type) {
return type === 'audio/mpeg';
/* FIXME:
* support video/x-flv
*/
}