我正在使用videoJs播放器播放视频,我需要知道videoJS中是否支持mpeg-dash?我 http://msdnrss.thecoderblogs.com/2014/01/mpeg-dash-tutorial-embedding-an-adaptive-streaming-video-within-your-html5-application-2/引用此链接来播放mpeg-dash视频。
在代码中
videojs(this.get('element')); //here this.get('element') refers to video object
var url= .mpd manifest file
var context = new Dash.di.DashContext();
var player = new MediaPlayer(context);
player.startup();
player.attachView(this.get('element')); //
player.attachSource(url);
现在mpeg-dash视频可以播放,但videoJS和Dash没有相互链接,所以我需要知道,如何将达世币绑定到 videoJs 播放器?
你可能想看看这个链接:https://github.com/videojs/video.js/issues/752 它说你需要在视频元素上指定一个类型属性(特别是type="application/dash+xml")。我也不确定Safari是否支持DASH(或永远不会支持),但最新版本的Chrome/Firefox应该。
请参考videojs-contrib-dash
const options = {
"preload": "auto",
"width":"600 px",
hls: {
withCredentials: true
},
plugins: {
videoJsResolutionSwitcher: {
// default: 'high',
dynamicLabel: true
}
},
html5: {
nativeCaptions: false,
dash: {
setLimitBitrateByPortal: false,
// setMaxAllowedBitrateFor: ['video', 2000]
}
}
};
videojs.options.flash.swf = "http://vjs.zencdn.net/4.2/video-js.swf"
this.video = videojs(this.videoElement.nativeElement,options);
this.video.src([
{
type: "application/dash+xml",
src: "your url",
}
]);
切换到破折号.js或比特达什进行MPEG-DASH播放。据我所知,还有一个视频.js dash.js的包装器。