我正在将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();
});
}
答案 0 :(得分:0)
无法在 BIM360 中获取签名 URL。