Video.js 指南
这些指南涵盖了 Video.js 用户的各种主题
Angular 和 Video.js
这是一个基本的 Angular 和 Video.js 播放器实现。此示例组件在 OnInit
时实例化播放器,并在 OnDestroy
时销毁它。
import {Component, ElementRef, Input, OnDestroy, OnInit, ViewChild, ViewEncapsulation} from '@angular/core';
import videojs from 'video.js';
@Component({
selector: 'app-vjs-player',
template: `
<video #target class="video-js" controls muted playsinline preload="none"></video>
`,
styleUrls: [
'./vjs-player.component.css'
],
encapsulation: ViewEncapsulation.None,
})
export class VjsPlayerComponent implements OnInit, OnDestroy {
@ViewChild('target', {static: true}) target: ElementRef;
// See options: https://videojs.com.cn/guides/options
@Input() options: {
fluid: boolean,
aspectRatio: string,
autoplay: boolean,
sources: {
src: string,
type: string,
}[],
};
player: videojs.Player;
constructor(
private elementRef: ElementRef,
) {}
// Instantiate a Video.js player OnInit
ngOnInit() {
this.player = videojs(this.target.nativeElement, this.options, function onPlayerReady() {
console.log('onPlayerReady', this);
});
}
// Dispose the player OnDestroy
ngOnDestroy() {
if (this.player) {
this.player.dispose();
}
}
}
最后,像这样使用组件(参见 Video.js 选项参考)
<app-vjs-player [options]="{autoplay: true, controls: true, sources: [{ src: '/path/to/video.mp4', type: 'video/mp4' }]}"></app-vjs-player>
别忘了包含 Video.js 的 CSS,它位于 video.js/dist/video-js.css
!