当前位置:   article > 正文

摄像头 rtsp 流转成 ws 使前端播放_怎么把海康r摄像头rtsp:xsxs流媒体地址转为websocket格式。

怎么把海康r摄像头rtsp:xsxs流媒体地址转为websocket格式。

前言:

前端是不能直接播放 rtsp 流的,必须通过后端转成前端支持的形式,这里是转成Websocket

1、使用 Node.js 开启一个新进程 把 rtsp 转成 MPEG1 形式 再通过Websocket传输

使用node-rtsp-stream                                                                链接:node-rtsp-stream - npm

  1. const Stream = require("node-rtsp-stream")
  2. new Stream({
  3. name: "测试",
  4. streamUrl: "rtsp://rtsp流地址",
  5. wsPort: 8080,//端口号
  6. // ffmpeg 的一些配置参数,比如转换分辨率等,大家可以去 ffmpeg 官网自行查询
  7. ffmpegOptions: {
  8. "-stats": "",
  9. "-r": 20,
  10. "-s": "1280 720", // 分辨率
  11. },
  12. })

注意:必须在服务器机器上(开启node.js的电脑)安装ffmpeg 

2、客户端使用 @cycjimmy/jsmpeg-player 来实现获取流,也可以自己连Websocket

这里我简单的封装了一下使用的方法                              链接:@cycjimmy/jsmpeg-player - npm

  1. import JSMpeg from '@cycjimmy/jsmpeg-player';
  2. import { PlayerWebsocket } from "./下面的Class"
  3. // 第一个参数是 Div 的ID或者类名 第二个参数是 Ws 的地址
  4. new PlayerWebsocket('#WebpackDom', 'ws的地址');

PlayerWebsocket 类

  1. class PlayerWebsocket {
  2. /**********************************
  3. * 变量s
  4. ***********************************/
  5. private m_VideoParentDom: Element | null;
  6. private m_VideoDom!: HTMLCanvasElement;
  7. private m_VideoSrc: string;
  8. private m_JSMpeg: any;
  9. /**********************************
  10. * 方法s
  11. ***********************************/
  12. constructor(videoParentDom: Element | string, src: string) {
  13. super();
  14. if (videoParentDom instanceof Element) {
  15. this.m_VideoParentDom = videoParentDom;
  16. } else if (typeof videoParentDom === 'string') {
  17. let dom = document.querySelector(videoParentDom);
  18. dom ? (this.m_VideoParentDom = dom) : (this.m_VideoParentDom = null);
  19. } else {
  20. this.m_VideoParentDom = null;
  21. }
  22. this.m_VideoSrc = src;
  23. this.init();
  24. }
  25. play() {
  26. this.m_JSMpeg.play();
  27. }
  28. pause() {
  29. this.m_JSMpeg.pause();
  30. }
  31. stop() {
  32. this.m_JSMpeg.stop();
  33. }
  34. destroy() {
  35. this.m_JSMpeg.destroy();
  36. this.m_VideoDom?.remove();
  37. }
  38. upDataSrc(src: string) {
  39. this.destroy();
  40. this.m_VideoSrc = src;
  41. this.init();
  42. }
  43. protected init() {
  44. if (!this.m_VideoParentDom) return;
  45. this.m_VideoDom = document.createElement('canvas');
  46. this.m_VideoParentDom.appendChild(this.m_VideoDom);
  47. this.m_VideoDom.style.width = '100%';
  48. this.m_VideoDom.style.height = '100%';
  49. this.m_JSMpeg = new JSMpeg.Player(this.m_VideoSrc, {
  50. canvas: this.m_VideoDom,
  51. });
  52. }
  53. }

3、好吧其实已经好了 兄弟们直接CV就行

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

闽ICP备14008679号