Hello,
we have a VoD streamig from Akamai with a multibitrate manifest like this:
#EXTM3U
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=927000,RESOLUTION=640x360,CODECS="avc1.66.30, mp4a.40.2",CLOSED-CAPTIONS=NONE
http://.../i/Destination/delivery/b0/73/b073a48b-c291-4cc6-b751-579a5cffda56/ONLINE20150918_,800k,450k,.mp4.csmil/index_0_av.m3u8
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=563000,RESOLUTION=480x270,CODECS="avc1.66.30, mp4a.40.2",CLOSED-CAPTIONS=NONE
http://.../i/Destination/delivery/b0/73/b073a48b-c291-4cc6-b751-579a5cffda56/ONLINE20150918_,800k,450k,.mp4.csmil/index_1_av.m3u8
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=96000,CODECS="mp4a.40.2",CLOSED-CAPTIONS=NONE
http://.../i/Destination/delivery/b0/73/b073a48b-c291-4cc6-b751-579a5cffda56/ONLINE20150918_,800k,450k,.mp4.csmil/index_1_a.m3u8
We are using JWPlayer 6.11 with the configuration below:
jwplayer("player1").setup({
autostart: true,
controlbar: "over",
skin: "../JWP/skin/custom-skin.xml",
androidhls: true,
file: 'http://.../i/Destination/delivery/b0/73/b073a48b-c291-4cc6-b751-579a5cffda56/ONLINE20150918_,800k,450k,.mp4.csmil/master.m3u8',
hlslabels: {
"545": "Low",
"891": "Medium",
"2588": "High"
},
width: 480,
height: 270
});
The player correctly recognises the two audio-video formats but not the audio only format.
Is there a way to automatically include also the audio only format?
Best regards
Davide
↧