我能够让Video.JS正常工作,但我无法让Resolution Switcher插件正常工作。
我只是不知道在哪里放置代码以使其工作我认为
我把它放在我的<head>
<link href="http://vjs.zencdn.net/5.4.4/video-js.css" rel="stylesheet">
<!-- If you'd like to support IE8 -->
<script src="http://vjs.zencdn.net/ie8/1.1.1/videojs-ie8.min.js"></script>
我将此代码用于显示视频的位置
<video id='video' class="video-js vjs-default-skin"></video>
我在<body>
结束
<script src="http://vjs.zencdn.net/5.4.4/video.js"></script>
<script src="assets/js/video.js"></script>
<script src="assets/js/videojs-resolution-switcher.js"></script>
之后放置
videojs('video', {
controls: true,
plugins: {
videoJsResolutionSwitcher: {
default: 'high',
dynamicLabel: true
}
}
}, function() {
// Add dynamically sources via updateSrc method
player.updateSrc([{
src: 'videos/intros/Intro480_30_Condensed.mp4',
type: 'video/mp4',
label: '480'
}, {
src: 'videos/intros/Intro720_30_Condensed.mp4',
type: 'video/mp4',
label: '720'
}])
player.on('resolutionchange', function() {
console.info('Source changed to %s', player.src())
})
})
这是我在控制台中遇到的错误
并没有播放。
答案 0 :(得分:4)
根据their github上发布的代码,第一行应为:
var player = videojs('video', {
可能在回调函数中,您可以使用player
而不是引用this
。
var player = videojs('video', {
controls: true,
plugins: {
videoJsResolutionSwitcher: {
default: 'high',
dynamicLabel: true
}
}
}, function() {
// Add dynamically sources via updateSrc method
this.updateSrc([{
src: 'videos/intros/Intro480_30_Condensed.mp4',
type: 'video/mp4',
label: '480'
}, {
src: 'videos/intros/Intro720_30_Condensed.mp4',
type: 'video/mp4',
label: '720'
}])
this.on('resolutionchange', function() {
console.info('Source changed to %s', this.src())
})
})