当前位置:   article > 正文

在vue项目中使用video.js实现视频播放和视频进度条打点_videojs-flash

videojs-flash

一、用video.js实现视频播放

1、安装video.js插件

  1. // 安装video.js插件
  2. npm install video.js -S
  3. // 如果需要播放rtmp直播流,需安装一下插件
  4. npm install videojs-flash -S

2、在组件代码里使用

  1. <template>
  2. <div data-vjs-player>
  3. <video ref="videoNode" class="video-js vjs-default-skin">
  4. 抱歉,您的浏览器不支持
  5. </video>
  6. </div>
  7. </template>

引入videojs插件

  1. import videojs from "video.js";
  2. //播放器中文,不能使用.js文件
  3. import videozhCN from "video.js/dist/lang/zh-CN.json";
  4. //样式文件注意要加上
  5. import "video.js/dist/video-js.css";
  6. //如果要播放RTMP要使用flash 需要先npm i videojs-flash
  7. import "videojs-flash";
  8. export default {
  9. data() {
  10. return {
  11. player: null,
  12. controls: true
  13. };
  14. },
  15. //初始化播放器
  16. mounted(){
  17. let options = {
  18. autoplay: true, // 自动播放
  19. language: "zh-CN",
  20. controls: this.controls, // 控制条
  21. preload: "auto", // 自动加载
  22. errorDisplay: true, // 错误展示
  23. // fluid: true, // 跟随外层容器变化大小,跟随的是外层宽度
  24. width: "500px",
  25. height: "500px",
  26. // controlBar: false, // 设为false不渲染控制条DOM元素,只设置controls为false虽然不展示,但是存在
  27. // textTrackDisplay: false, // 不渲染字幕相关DOM
  28. userActions: {
  29. hotkeys: true // 是否支持热键
  30. },
  31. notSupportedMessage: "此视频暂无法播放,请稍后再试",
  32. techOrder: ["h5","flash"], // 定义Video.js技术首选的顺序
  33. sources: [
  34. {
  35. src: './video/xxx.mp4', // 视频或者直播地址
  36. type: 'video/mp4',
  37. //type: 'rtmp/flv',
  38. }
  39. ]
  40. };
  41. this.player = videojs(
  42. this.$refs.videoNode,
  43. options,
  44. function onPlayerReady() {
  45. videojs.log(`Your player is ready!`);
  46. }
  47. );
  48. videojs.addLanguage("zh-CN", videozhCN);
  49. },
  50. beforeDestroy() {
  51. if (this.player) {
  52. this.player.dispose();
  53. }
  54. }
  55. }

注意:controls 如果不是true的话,不会显示播放按钮

3、播放按钮居中 

播放按钮默认在左上角,是作者认为会遮挡内容考虑的,不过这个是可以根据参数修改的,只需要给video标签加一个class(vjs-big-play-centered)就可以了。

<video ref="videoNode" class="video-js vjs-default-skin vjs-big-play-centered"></video>

二、用videojs-markers实现视频进度条打点

要实现的功能是视频的进度条上面有一些小点,然后鼠标放上去会出现一些文字提示。

1、安装videojs-markers

npm i videojs-markers -S

2、引入videojs-markers

  1. // 引入videojs-markers
  2. import "videojs-markers";
  3. //引入样式
  4. import "videojs-markers/dist/videojs.markers.css";

3、使用videojs-markers

  1. this.player.markers({
  2. markerStyle: {
  3. // 标记点样式
  4. width: "0.7em",
  5. height: "0.7em",
  6. bottom: "-0.20em",
  7. "border-radius": "50%",
  8. "background-color": "orange",
  9. position: "absolute"
  10. },
  11. //鼠标移入标记点的提示
  12. markerTip: {
  13. display: true, // 是否显示
  14. /*
  15. 用于动态构建标记提示文本的回调函数。
  16. 只需返回一个字符串,参数标记是传递给插件的标记对象
  17. */
  18. text: function(marker) {
  19. return marker.text;
  20. }
  21. },
  22. markers: [
  23. {
  24. time: 20,
  25. text:'点位一',
  26. class: 'red'
  27. },
  28. {
  29. time: 40,
  30. text:'点位二',
  31. class: 'green'
  32. },
  33. {
  34. time: 130,
  35. text:'点位三',
  36. class: 'yellow'
  37. },
  38. {
  39. time: 200,
  40. text:'点位四'
  41. }
  42. ],
  43. });

注意:markerStyle配置的是各个打点的默认颜色,如果要每个打点都有自己各自的颜色,可以在markers里给每个打点添加class名字,然后在css里单独设置颜色。

三、video.js 配置项 

1、常用配置选项

  • autoplay:true/false 播放器准备好之后,是否自动播放 【默认false】
  • controls:true/false 是否拥有控制条 【默认true】,如果设为false,界面上不会出现任何控制按钮,启动视频播放的唯一方法是使用autoplay属性或通过Player API
  • height: 视频容器的高度,字符串或数字(以像素为单位),比如: height: 300 或者 height: '300px'
  • width: 视频容器的宽度, 字符串或数字(以像素为单位)
  • loop : true/false 视频播放结束后,是否循环播放
  • muted : true/false 是否静音
  • poster: 播放前显示的视频画面,播放开始之后自动移除。通常传入一个URL
  • preload: 预加载
    • 'auto':立即开始加载视频(如果浏览器支持)。某些移动设备不会预加载视频,以保护用户的带宽/数据使用。
    • 'metadata':仅加载视频的元数据,其中包括视频的持续时间和尺寸等信息。有时,元数据将通过下载几帧视频来加载。
    • 'none':不要预加载任何数据。浏览器将等待用户点击“播放”开始下载。
  • children: Array | Object 可选子组件 从基础的Component组件继承而来的子组件,数组中的顺序将影响组件的创建顺序

2、特定的配置选项

除非另有说明,否则默认情况下每个选项undefined。

aspectRatio

类型: string
将播放器置于流体模式,并在计算播放器的动态大小时使用该值。该值应表示比率 - 由冒号(例如"16:9"或"4:3")分隔的两个数字。

autoSetup

类型: boolean
阻止播放器为具有data-setup属性的媒体元素运行autoSetup 。

注意:必须在与videojs.options.autoSetup = falsevideojs源加载生效的同一时刻全局设置。

children

类型: Array|Object
此选项继承自基Component类。

fluid

类型: boolean
何时true,Video.js播放器将具有流畅的大小。换句话说,它将扩展以适应其容器。

此外,如果元素具有"vjs-fluid",则此选项自动设置为true。

inactivityTimeout

类型: number
Video.js表示用户通过"vjs-user-active"和"vjs-user-inactive"类以及"useractive"事件与玩家进行交互。

在inactivityTimeout决定了不活动的许多毫秒声明用户闲置之前是必需的。值为0表示没有inactivityTimeout,用户永远不会被视为非活动状态。

language

键入:string,默认值:浏览器默认值或’en’
与播放器中的一种可用语言匹配的语言代码。这为播放器设置了初始语言,但始终可以更改。

languages

类型: Object
自定义播放器中可用的语言。此对象的键将是语言代码,值将是具有英语键和翻译值的对象。

注意:通常,不需要此选项,最好将自定义语言传递给videojs.addLanguage()

nativeControlsForTouch

类型: boolean
明确设置关联技术选项的默认值。

notSupportedMessage

类型: string
允许覆盖Video.js无法播放媒体源时显示的默认消息。

playbackRates

类型: Array
严格大于0的数字数组,其中1表示常速(100%),0.5表示半速(50%),2表示双速(200%)等。如果指定,Video.js显示控件(类vjs-playback-rate)允许用户从选择数组中选择播放速度。选项以从下到上的指定顺序显示。

  1. videojs('my-player', {
  2.   playbackRates: [0.5, 1, 1.5, 2]
  3. });

plugins

类型: Object
这支持在初始化播放器时使用自定义选项自动初始化插件 - 而不是要求您手动初始化它们。

  1. videojs('my-player', {
  2.   plugins: {
  3.     foo: {bar: true},
  4.     boo: {baz: false}
  5.   }
  6. });
  7. 以上大致相当于:
  8. var player = videojs('my-player');
  9. player.foo({bar: true});
  10. player.boo({baz: false});

虽然,由于plugins选项是对象,因此无法保证初始化顺序!

sources

类型: Array

一组对象,它们反映了本机元素具有一系列子元素的能力。这应该是带有src和type属性的对象数组

  1. videojs('my-player', {
  2.   sources: [{
  3.     src: './video/video.mp4',
  4.     type: 'video/mp4'
  5.   }, {
  6.     src: './video/video.webm',
  7.     type: 'video/webm'
  8.   }]
  9. });

使用元素将具有相同的效果:

  1. <video ...>
  2.   <source src="./video/video.mp4" type="video/mp4">
  3.   <source src="./video/video.webm" type="video/webm">
  4. </video>

techCanOverridePoster

类型: boolean

使技术人员有可能覆盖玩家的海报并融入玩家的海报生命周期。当使用多个技术时,这可能很有用,每个技术都必须在播放新源时设置自己的海报。

techOrder

输入:Array,默认值:[‘html5’]

定义Video.js技术首选的顺序。默认情况下,这意味着Html5首选技术。其他注册的技术将在此技术之后按其注册顺序添加。

vtt.js

类型: string

允许覆盖vtt.js的默认URL,该URL可以异步加载到polyfill支持WebVTT。

此选项将用于Video.js(即video.novtt.js)的“novtt”版本中。否则,vtt.js与Video.js捆绑在一起。

3、组件选项

children

类型: Array|Object

如果Array- 这是默认值 - 这用于确定哪些子节点(按组件名称)以及在播放器(或其他组件)上创建它们的顺序

  1. // The following code creates a player with ONLY bigPlayButton and
  2. // controlBar child components.
  3. videojs('my-player', {
  4. children: [
  5. 'bigPlayButton',
  6. 'controlBar'
  7. ]
  8. });

该children选项还可以作为传递Object。在这种情况下,它用于提供options任何/所有孩子,包括禁用它们false

  1. // This player's ONLY child will be the controlBar. Clearly, this is not the
  2. // ideal method for disabling a grandchild!
  3. videojs('my-player', {
  4. children: {
  5. controlBar: {
  6. fullscreenToggle: false
  7. }
  8. }
  9. });

${componentName}

类型: Object

可以通过组件名称的低驼峰案例变体(例如controlBarfor ControlBar)为组件提供自定义选项。这些可以嵌套在孙子关系的表示中。

例如,要禁用全屏控件

  1. videojs('my-player', {
  2. controlBar: {
  3. fullscreenToggle: false
  4. }
  5. });

${techName}

类型: Object

Video.js回放技术(即“技术”)可以作为传递给该videojs功能的选项的一部分给予自定义选项。它们应该在技​​术名称的小写变体下传递(例如"flash"或"html5")。

flash

swf
指定Video.js SWF文件在Flash技术位置的位置

  1. videojs('my-player', {
  2. flash: {
  3. swf: '//path/to/videojs.swf'
  4. }
  5. });

但是,更改全局默认值通常更合适:

videojs.options.flash.swf = ‘//path/to/videojs.swf’

nativeControlsForTouch

类型: boolean

只有技术支持Html5,此选项可以设置true为强制触摸设备的本机控件。

nativeAudioTracks

类型: boolean

可以设置为false禁用本机音轨支持。最常用于videojs-contrib-hls。

nativeTextTracks

类型: boolean

可以设置为false强制模拟文本轨道而不是本机支持。该nativeCaptions选项也存在,但只是一个别名nativeTextTracks。

nativeVideoTracks

类型: boolean

可以设置为false禁用本机视频轨道支持。最常用于videojs-contrib-hls。
 

四、常用事件

  • 播放 this.play()
  • 停止 – video没有stop方法,可以用pause 暂停获得同样的效果
  • 暂停 this.pause()
  • 销毁 this.dispose()
  • 监听 this.on(‘click‘,fn)
  • 触发事件this.trigger(‘dispose‘)
  1. var options = {};
  2. var player = videojs(‘example_video_1‘, options, function onPlayerReady() {
  3. videojs.log(‘播放器已经准备好了!‘);
  4. // In this context, `this` is the player that was created by Video.js.<br>
  5. // 注意,这个地方的上下文, `this` 指向的是Video.js的实例对像player
  6. this.play();
  7. // How about an event listener?<br> // 如何使用事件监听?
  8. this.on(‘ended‘, function() {
  9. videojs.log(‘播放结束了!‘);
  10. });
  11. });

五、播放器自定义组件

1、在控制栏上添加按钮

  1. var button = this.player.getChild('ControlBar').addChild('button', {
  2. controlText: 'My button',
  3. className: 'vjs-visible-text',
  4. clickHandler: function(event) {
  5. videojs.log('Clicked');
  6. }
  7. });

2、创建用于在播放器顶部显示标题的组件

  1. // Get the Component base class from Video.js
  2. var Component = videojs.getComponent('Component');
  3. // The videojs.extend function is used to assist with inheritance. In
  4. // an ES6 environment, `class TitleBar extends Component` would work
  5. // identically.
  6. var TitleBar = videojs.extend(Component, {
  7. // The constructor of a component receives two arguments: the
  8. // player it will be associated with and an object of options.
  9. constructor: function(player, options) {
  10. // It is important to invoke the superclass before anything else,
  11. // to get all the features of components out of the box!
  12. Component.apply(this, arguments);
  13. // If a `text` option was passed in, update the text content of
  14. // the component.
  15. if (options.text) {
  16. this.updateTextContent(options.text);
  17. }
  18. },
  19. // The `createEl` function of a component creates its DOM element.
  20. createEl: function() {
  21. return videojs.createEl('div', {
  22. // Prefixing classes of elements within a player with "vjs-"
  23. // is a convention used in Video.js.
  24. className: 'vjs-title-bar'
  25. });
  26. },
  27. // This function could be called at any time to update the text
  28. // contents of the component.
  29. updateTextContent: function(text) {
  30. // If no text was provided, default to "Title Unknown"
  31. if (typeof text !== 'string') {
  32. text = 'Title Unknown';
  33. }
  34. // Use Video.js utility DOM methods to manipulate the content
  35. // of the component's element.
  36. videojs.emptyEl(this.el());
  37. videojs.appendContent(this.el(), text);
  38. }
  39. });
  40. // Register the component with Video.js, so it can be used in players.
  41. videojs.registerComponent('TitleBar', TitleBar);
  42. // Create a player.
  43. var player = videojs('my-player');
  44. // Add the TitleBar as a child of the player and provide it some text
  45. // in its options.
  46. player.addChild('TitleBar', {text: 'The Title of The Video!'});

3、添加一个自定义的放大功能

子组件嵌套

  1. const MenuButton = videojs.getComponent('MenuButton')
  2. const Menu = videojs.getComponent('Menu')
  3. const MenuItem = videojs.getComponent('MenuItem')
  4. const items = ['100%', '80%', '50%', 'auto']
  5. const myMenu = new Menu(this.player)
  6. const myMenuItemList = []
  7. for (let i = 0; i < items.length; i++) {
  8. myMenuItemList.push(new MenuItem(this.player, { label: items[i] }))
  9. myMenuItemList[i].on('click', $event => {
  10. this.setShowPercent($event)
  11. })
  12. myMenu.addItem(myMenuItemList[i])
  13. }
  14. this.player.myMenu = myMenu
  15. this.player.myMenuItemList = myMenuItemList
  16. const myMenuButton = new MenuButton(this.player)
  17. myMenuButton.addChild(myMenu)
  18. myMenuButton.controlText('显示比例')
  19. myMenuButton.addClass('my-menu-button')
  20. this.player.myMenuButton = myMenuButton
  21. this.player.controlBar.addChild(myMenuButton)

4、关于自定义按钮的文本不显示的解决方法

其实就是自定义按钮默认是不显示文本的,需要我们手动添加className:vjs-visible-text

  1. this.player = videojs(...)
  2. var Button = videojs.getComponent('Button');
  3. var button = new Button(this.player, {
  4. className: 'vjs-visible-text',
  5. controlText: '按钮文本',
  6. clickHandler: function(event) {
  7. videojs.log('Clicked');
  8. }
  9. });
  10. var button = this.player.getChild('ControlBar').addChild(button)
  1. this.player = videojs(...)
  2. var button = this.player.getChild('ControlBar').addChild('button', {
  3. controlText: 'My button',
  4. className: 'vjs-visible-text',
  5. clickHandler: function(event) {
  6. videojs.log('Clicked');
  7. }
  8. });
  1. this.player = videojs(...)
  2. const MenuButton = videojs.getComponent('MenuButton')
  3. const myMenuButton = new MenuButton(this.player)
  4. myMenuButton.addChild(myMenu)
  5. myMenuButton.controlText('显示比例')
  6. myMenuButton.addClass('my-menu-button')
  7. // 添加显示文本的类名
  8. myMenuButton.children()[0].addClass('vjs-visible-text')
  9. this.player.myMenuButton = myMenuButton
  10. this.player.controlBar.addChild(myMenuButton)

参考文档 

Videojs-markers

Home | Video.js Documentation

快速使用 - video.js 中文文档

Components | Video.js

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/79552
推荐阅读
相关标签
  

闽ICP备14008679号