I am trying to setup a web page able to play live and on-demand rtmp streams on a certain rtmp-server. Previously I had success with jwplayer and I had setup this player to play on pc clients successfully. The java-script I used for live streaming is this:
jwplayer("myElement").setup({
file: rtmp://myStreamURL,
height: 360,
image: "../myImage.jpg",
rtmp: {
subscribe: true
},
autostart: true,
width: 640
});
Now the problem I faced is that when I want to access the web page from Android clients I see an error message on the player screen as:
No playable sources found
.
I am confused that if free version of jwplayer works on android OS as I read on here, here or here.
Also maybe some configs or manifast files are needed as explained here.
Now I want to decide if I need change my player to work on both pc and android clients? Also is can any special change in configuration be effective? Any help would be worthwhile. thank you.