• vue flvjs 播放视频


    写在前面:

    之前使用过vodiejs插件播放过mp4视频格式的视频;

    此次需要使用flvjs插件播放rtsp视频格式的视频;

    因为视频的数据格式不同,所以对应的插件不同。

     思维导图:

    参考链接:rtmp、rtsp、flv、m3u8、 

    一、rtsp+flvjs前端实现

    1.npm 安装依赖

    npm i flv.js

    2.使用(vue)

    1. <template>
    2. <div class="video_home">
    3. <video class="videoBox" muted autoplay controls ref="player">video>
    4. div>
    5. template>
    6. <script>
    7. import flvjs from 'flv.js' // 引入flvjs
    8. export default {
    9. data () {
    10. return {
    11. player: null
    12. }
    13. },
    14. mounted () {
    15. // 如果浏览器支持flvjs,则执行相应的程序
    16. if (flvjs.isSupported()) {
    17. // 准备监控设备流地址
    18. const url = 'rtsp://admin:1234567@192.168.1.100:554/Streaming/Channels/101?transportmode=unicast'
    19. // 创建一个flvjs实例
    20. // 下面的ws://localhost:8888换成你搭建的websocket服务地址,后面加上设备流地址
    21. this.player = flvjs.createPlayer({
    22. type: 'flv',
    23. isLive: true,
    24. url: 'ws://localhost:8888/' + url
    25. })
    26. this.player.on('error', (e) => {
    27. console.log(e)
    28. })
    29. // 将实例挂载到video元素上面
    30. this.player.attachMediaElement(this.$refs.player)
    31. try {
    32. // 开始运行加载 只要流地址正常 就可以在h5页面中播放出画面了
    33. this.player.load()
    34. this.player.play()
    35. } catch (error) {
    36. console.log(error)
    37. }
    38. }
    39. },
    40. beforeDestroy () {
    41. // 页面销毁前 关闭flvjs
    42. this.player.destroy()
    43. }
    44. }
    45. script>
    46. <style lang="scss" scoped>
    47. .video_home{
    48. .videoBox{
    49. width: 300px;
    50. height: 300px;
    51. }
    52. }
    53. style>

     3.使用(react)

    1. import React, { useEffect, useRef } from 'react';
    2. import './FlvVideoPlayer.scss';
    3. import flvjs from 'flv.js';
    4. import { Button } from '@alifd/next';
    5. interface FlvVideoPlayerProps {
    6. url?: string; // rtsp 的url
    7. isNeedControl?: boolean;
    8. fullScreenRef?: any; // 方便组件外部调用全屏方法的ref
    9. }
    10. const FlvVideoPlayer = React.forwardRefFlvVideoPlayerProps>(({ isNeedControl, url, fullScreenRef }, ref) => {
    11. const videoDomRef = useRef();
    12. const playerRef = useRef(); // 储存player的实例
    13. React.useImperativeHandle(ref, () => ({
    14. requestFullscreen,
    15. }));
    16. useEffect(() => {
    17. if (videoDomRef.current) {
    18. if (fullScreenRef) {
    19. fullScreenRef.current[url] = requestFullscreen;
    20. }
    21. // const url = `${videoUrl}/rtsp/video1/?url=${url}`;
    22. playerRef.current = flvjs.createPlayer({
    23. type: 'flv',
    24. isLive: true,
    25. url,
    26. });
    27. playerRef.current.attachMediaElement(videoDomRef.current);
    28. try {
    29. playerRef.current.load();
    30. playerRef.current.play();
    31. } catch (error) {
    32. console.log(error);
    33. }
    34. }
    35. return () => {
    36. destroy();
    37. };
    38. }, [url]);
    39. /**
    40. * 全屏方法
    41. */
    42. const requestFullscreen = () => {
    43. if (videoDomRef.current) {
    44. (videoDomRef.current.requestFullscreen && videoDomRef.current.requestFullscreen()) ||
    45. (videoDomRef.current.webkitRequestFullScreen && videoDomRef.current.webkitRequestFullScreen()) ||
    46. (videoDomRef.current.mozRequestFullScreen && videoDomRef.current.mozRequestFullScreen()) ||
    47. (videoDomRef.current.msRequestFullscreen && videoDomRef.current.msRequestFullscreen());
    48. }
    49. };
    50. /**
    51. * 销毁flv的实例
    52. */
    53. const destroy = () => {
    54. if (playerRef.current) {
    55. playerRef.current.pause();
    56. playerRef.current.unload();
    57. playerRef.current.detachMediaElement();
    58. playerRef.current.destroy();
    59. playerRef.current = null;
    60. }
    61. };
    62. return (
    63. <>
    64. <Button type="primary" onClick={requestFullscreen}>
    65. 全屏按钮
    66. Button>
    67. <video controls={isNeedControl} ref={videoDomRef} className="FlvVideoPlayer" loop />
    68. );
    69. });
    70. export default FlvVideoPlayer;

    二、ffmpeg+nodejs+websocket

    简介:

    后端代码:

    1. const ffmpegPath = require('@ffmpeg-installer/ffmpeg'); // 自动为当前node服务所在的系统安装ffmpeg
    2. const ffmpeg = require('fluent-ffmpeg');
    3. const express = require('express');
    4. const webSocketStream = require('websocket-stream/stream');
    5. const expressWebSocket = require('express-ws');
    6. ffmpeg.setFfmpegPath(ffmpegPath.path);
    7. /**
    8. * 创建一个后端服务
    9. */
    10. function createServer() {
    11. const app = express();
    12. app.use(express.static(__dirname));
    13. expressWebSocket(app, null, {
    14. perMessageDeflate: true
    15. });
    16. app.ws('/rtsp/', rtspToFlvHandle);
    17. app.get('/', (req, response) => {
    18. response.send('当你看到这个页面的时候说明rtsp流媒体服务正常启动中......');
    19. });
    20. app.listen(8100, () => {
    21. console.log('转换rtsp流媒体服务启动了,服务端口号为8100');
    22. });
    23. }
    24. /**
    25. * rtsp 转换 flv 的处理函数
    26. * @param ws
    27. * @param req
    28. */
    29. function rtspToFlvHandle(ws, req) {
    30. const stream = webSocketStream(ws, {
    31. binary: true,
    32. browserBufferTimeout: 1000000
    33. }, {
    34. browserBufferTimeout: 1000000
    35. });
    36. // const url = req.query.url;
    37. const url = new Buffer(req.query.url, 'base64').toString(); // 前端对rtsp url进行了base64编码,此处进行解码
    38. console.log('rtsp url:', url);
    39. try {
    40. ffmpeg(url)
    41. .addInputOption(
    42. '-rtsp_transport', 'tcp',
    43. '-buffer_size', '102400'
    44. )
    45. .on('start', (commandLine) => {
    46. // commandLine 是完整的ffmpeg命令
    47. console.log(commandLine, '转码 开始');
    48. })
    49. .on('codecData', function (data) {
    50. console.log(data, '转码中......');
    51. })
    52. .on('progress', function (progress) {
    53. // console.log(progress,'转码进度')
    54. })
    55. .on('error', function (err, a, b) {
    56. console.log(url, '转码 错误: ', err.message);
    57. console.log('输入错误', a);
    58. console.log('输出错误', b);
    59. })
    60. .on('end', function () {
    61. console.log(url, '转码 结束!');
    62. })
    63. .addOutputOption(
    64. '-threads', '4', // 一些降低延迟的配置参数
    65. '-tune', 'zerolatency',
    66. '-preset', 'ultrafast'
    67. )
    68. .outputFormat('flv') // 转换为flv格式
    69. .videoCodec('libx264') // ffmpeg无法直接将h265转换为flv的,故需要先将h265转换为h264,然后再转换为flv
    70. .withSize('50%') // 转换之后的视频分辨率原来的50%, 如果转换出来的视频仍然延迟高,可按照文档上面的描述,自行降低分辨率
    71. .noAudio() // 去除声音
    72. .pipe(stream);
    73. } catch (error) {
    74. console.log('抛出异常', error);
    75. }
    76. }
    77. createServer();
    78. 作者:huisiyu
    79. 链接:https://juejin.cn/post/7124188097617051685
    80. 来源:稀土掘金
    81. 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

    参看链接:参考链接,点击跳转 

    三、下载node依赖+电脑下载ffmpeg并配置系统环境

    简介:

    参考链接:参考链接,点击跳转 

  • 相关阅读:
    消息队列解决的问题
    Redis-压缩列表
    【现代密码学原理】——密钥管理和其他公钥密码体制(学习笔记)
    批量替换网站程序中的gotoip域名
    【单元测试】--高级主题
    华为手机正在重回巅峰
    玩转Leaflet-带你吃透Control知识
    Effective C++ 阅读笔记 01:让自己习惯C++
    SCADA系统是什么意思?
    软件设计模式白话文系列(五)建造者模式
  • 原文地址:https://blog.csdn.net/weixin_45024453/article/details/137956650