I installed wowza on sever and now I want to play sample.mp4 file with jwplayer 7 but firefox show message Flash plugin fail to load, my rtmp is rtmp://172.104.44.28:1935/vod/sample.mp4, my code html page is below. The link rtmp file mp4 is working with player Media Player Classic app in my computer
jwplayer("player").setup({
"playlist": [
{
"sources": [
{
"default": false,
"file": "rtmp://172.104.44.28:1935/vod/sample.mp4",
"label": "0",
"type": "rtmp",
"preload": "none"
}
]
}
],
"primary": "html5",
"hlshtml": true
});
↧