
JWplayer with RTMP , HTTP , RTSP with Flash player problem
First of all I have to tell you about my scope.
1 I using WOWZA streaming server which can stream any of codec i want.
2 I need to play my video on every browser and every device as much as I can.
-----------------------------------
So, this is my code
bc.. jwplayer('fundamentalPlayer').setup({
width: '100%',
skin: 'vapor',
playlist: [
{
title: "MANUAL UPLOAD",
image: "/Thumbnail/20140409174257.jpg",
pdf: '',
sources: [{
file: "rtmp://IP/vod/_definst_/ks/20140409174257.mp4"
},{
file: "http://IP:1935/vod/_definst_/mp4:ks/20140409174257.mp4/playlist.m3u8"
},{
file: "rtsp://IP:1935/vod/_definst_/mp4:ks/20140409174257.mp4"
}]
},
],
primary: "flash"
});
and I confirm that all of input work fine. (Test on Chrome,Firefox,IOS Device Browser,Android Device Browser)
but my problem is when I test on IE (No Flash player) the player can work because it fall back to HTML5 player style
but It can not play my input file. (like when I remove primary: "flash" )
I think that the player try to find some source on HTML5 Mode
So, how can I manage this problem ?
(Webm and use only HTML5 Mode ?)
Thank You,
March