我的html中有一个基本的JWplayer实例:
<div id="myvideo">Loading the player...</div>
<script>
var playerInstance = jwplayer("myvideo");
playerInstance.setup(
{
"playlist": [
{
"sources": [
{
"default": false,
"file": "https://bitdash-a.akamaihd.net/content/MI201109210084_1/m3u8s/f08e80da-bf1d-4e3d-8899-f0f6155f6efa.m3u8",
"label": "0",
"type": "hls",
"preload": "none"
}
]
}
],
"primary": "html5",
"hlshtml": true
});
</script>
M3u8 URL是用于演示目的的外部源。
通过JWPlayer网站(StreamTester)加载URL可以很好地播放流。但是,在我自己的示例中设置它,我收到错误:加载播放器时出错:找不到可播放的来源。
我已正确链接了jwplayer.js和密钥。
使用托管的MP4视频测试我的示例也没有问题。我错过了什么?