
Wowza secure token and jwplayer 7
Ok guys, here is my code for rtmp and hls with adaptive bit rate:
playerInstance.setup({
playlist: [{
sources: [
{ file: "http://xxx.xxx.xxx.xxx:1935/vod/smil:00_intro.smil/playlist.m3u8" },
{ file: "http://xxx.xxx.xxx.xxx:1935/vod/smil:00_intro.smil/jwplayer.smil" },
],
}],
androidhls: true,
});
It works properly with jwplayer 7 (7.0.1), with no secure token. Streaming provided by Wowza 4.2
But when I tried to secure the streaming, after a few days of attempts, it seems that Secure Token v2 is only working with hls (I developed a php example not posted here)
No way to work with rtmp and smil file. Is this correct or is there a workaround?
And another issue. When I tried to use secure token TEA just only with rtmp, jwplayer 7 doesn't work. The player at play event shows a continue loading buffer icon with any message.
The following code works properly with jwplayer 6.12 but not with 7 and 7.0.1
var playerInstance = jwplayer("myElement");
playerInstance.setup({
playlist: [{
sources: [
{ file: "http://xxx.xxx.xxx.xxx:1935/vod/smil:00_intro.smil/jwplayer.smil" },
],
}],
androidhls: true,
rtmp: {
securetoken: "c271e71c0795a275"
}
});
Any help? Thank you in advance