我正在尝试使用hls.js通过AES算法播放加密的视频
hls = new Hls({
cryptoAes256CbcKey: key
});
hls.loadSource(document.querySelector('#inputUrl1').value);
hls.attachMedia(document.querySelector('#video1'));
hls.on(window.Hls.Events.MANIFEST_PARSED, function () {
document.querySelector('#video1').play();
});
但我收到此错误
"no EXTM3U delimiter"
谢谢