一.方法一:使用vue-video-player(5.0.2)

最近我的项目做了一个监控视屏的显示,后台提供的视屏格式是rtmp
后来又改为m3u8,没成功,原因是占用内存过大,所以取消了这种方式

  • 一、安装
  1. npm i vue-video-player -S
  2. npm i videojs-flash -S 播放rtmp
  3. npm i videojs-contrib-hls -S 播放m3u8
  • 全局引入 main.js

    1. import VideoPlayer from 'vue-video-player'
    2. import 'video.js/dist/video-js.css' //videoJs的样式
    3. // import 'vue-video-player/src/custom-theme.css' //vue-video-player的样式
    4. import 'videojs-flash'; //引入才能播放rtmp视屏
    5. // import 'videojs-contrib-hls' //引入才能播放m3u8文件
    6. Vue.use(VideoPlayer)
  • 在页面中使用

    1. <video-player class="video-player vjs-custom-skin"
    2. ref="videoPlayer"
    3. :playsinline="true"
    4. :options="playerOptions"
    5. @play="onPlayerPlay($event)"
    6. @pause="onPlayerPause($event)"
    7. @ended="onPlayerEnded($event)"
    8. ></video-player>
    1. //完整的配置数据(不要的可以直接注释掉)
    2. data(){
    3. return {
    4. playerOptions:{
    5. playbackRates: [0.7, 1.0, 1.5, 2.0], //播放速度
    6. autoplay: false, //如果true,浏览器准备好时开始回放。
    7. muted: false, // 默认情况下将会消除任何音频。
    8. loop: false, // 导致视频一结束就重新开始。
    9. preload: 'auto', // 建议浏览器在<video>加载元素后是否应该开始下载视频数据。auto浏览器选择最佳行为,立即开始加载视频(如果浏览器支持)
    10. language: 'zh-CN',
    11. aspectRatio: '16:9', // 将播放器置于流畅模式,并在计算播放器的动态大小时使用该值。值应该代表一个比例 - 用冒号分隔的两个数字(例如"16:9"或"4:3")
    12. // fluid: true, // 当true时,Video.js player将拥有流体大小。换句话说,它将按比例缩放以适应其容器。
    13. sources: [{
    14. type: "application/x-mpegURL",//这里的种类支持很多种:基本视频格式、直播、流媒体等,具体可以参看git网址项目
    15. src: "" //url地址
    16. }],
    17. // hls:true, //如果是播放m3u8必须加(需注释掉techOrder,不然会有报错)
    18. techOrder: ['flash'], //播放rtmp必须加
    19. poster: "", //你的封面地址
    20. notSupportedMessage: '此视频暂无法播放,请稍后再试', //允许覆盖Video.js无法播放媒体源时显示的默认信息。
    21. controlBar: {
    22. timeDivider: true,
    23. durationDisplay: true,
    24. remainingTimeDisplay: false,
    25. fullscreenToggle: true //全屏按钮
    26. }
    27. }
    28. }
    29. }
  • 遇到的问题

1、设置了autoplay: true 不能自动播放,原因是我这里播放视频的窗口小于了400x400
2、如何使用外部按钮点击全屏

  1. //点击全屏播放
  2. handleFullScreen(index){
  3. const player = this.$refs.videoPlayer.player;
  4. player.requestFullscreen();//调用全屏api方法
  5. player.isFullscreen(true)
  6. player.play()
  7. }

二.方法二,自己封装组件

  • 安装依赖

    1. yarn add hls.js
  • 创建子组件 ```javascript

  1. - 父组件中使用
  2. ```html
  3. <template>
  4. <div class="main">
  5. <Wvideo ref="video" :videoSrc="videoUrl"></Wvideo>
  6. </div>
  7. </template>
  8. <script>
  9. import Wvideo from '@/components/Video';
  10. export default {
  11. components: {
  12. Wvideo,
  13. },
  14. data() {
  15. return {
  16. lodingShow: true, //是否显示loading?
  17. loadingMsg: '加载中',
  18. hls: null, //直播流
  19. };
  20. },
  21. methods: {
  22. getCameraHls(val) {
  23. api.getCameraHls({ devid: val }).then(res => {
  24. console.log('设备号', val, '直播地址', res);
  25. if (res.indexOf('失败') !== -1) {
  26. this.$message.error('实景地址获取失败,请检查网络或设备');
  27. this.lodingShow = false;
  28. } else {
  29. this.stationRealPopups = true;
  30. this.videoUrl = res;
  31. this.lodingShow = false;
  32. this.$nextTick(() => {
  33. this.$refs.video.initVideo();//调用子组件的关闭播放事件
  34. });
  35. }
  36. });
  37. },
  38. // 实景显示
  39. handleRealShow(iemi) {
  40. this.lodingShow = true;
  41. this.loadingMsg = '正在请求摄像头地址';
  42. this.getCameraHls(iemi);
  43. },
  44. realPopupsClose() {
  45. this.stationRealPopups = false;
  46. this.videoUrl = '';
  47. this.$refs.video.stopVideo();
  48. },
  49. },
  50. //离开当前页面
  51. beforeRouteLeave(to, from, next) {
  52. this.$refs.video.stopVideo();//停止播放,不写这一步,m3u8就会一直请求
  53. },
  54. };
  55. </script>

用来测试的流

香港财经:rtmp://202.69.69.180:443/webcast/bshdlive-pc
芒果TV:rtmp://58.200.131.2:1935/livetv/hunantv
韩国GoodTV:rtmp://mobliestream.c3tv.com:554/live/goodtv.sdp
http://1252093142.vod2.myqcloud.com/4704461fvodcq1252093142/f865d8a05285890787810776469/playlist.f3.m3u8