我正在为我的视频播放器使用 video.js 库。我有供应商 Autodesk bim360 doc,我的视频文件在那里。
我得到的网址像 - blob:http ://sample-client-for-test-plan.localtest.me:3000/11c90362-8e46-4195-94c8-940d56c4aa42
来自提供商,但视频播放器不支持。
任何帮助,将不胜感激。
这是我的代码 -
function bim360_player(res, callbackFn) {
console.log(res.video_url)
callbackFn();
var player = videojs('#video_viewer' );
videojs.Hls.xhr.beforeRequest = function(options) {
options.headers = options.headers || {}
options.headers["Authorization"] = 'Bearer ' + res.auth_token;
return options;
};
player.ready(function() {
this.src({
src: res.video_url,
withCredentials: true,
type: 'application/x-mpegURL'
})
this.play();
});
}