
HTML 5 Player issue with quicktime video
Hi,
I need to play quicktime files (.mov) through HTML 5 video tag. I am using JWPlayer but it fallback to flash on all browsers (even on chrome 9 beta and safari 5). I expected flash for FF but not for above two browsers.
I am using code like that.
bc.. jwplayer("top_video_widget_container").setup({
file: '/uploads/sample1.mov',
height: 361,
menu: false,
width: 641,
image: "/images/sync-vid-bg.png",
players: [
{ type: "html5" },
{ type: "flash", src: "/js/jwplayer/player.swf" }
],
});
});
Also i need to do it dynamically by javascript so video file could be change at any time with refreshing page.
Can any one have solution ?