当前位置:   article > 正文

利用流媒体将RSTP流转成WEB端可播放(使用EasyDarwin)_rstp多路播放

rstp多路播放

个人测试成功如下(Windows环境):

首先获取EasyDarwin:链接:https://pan.baidu.com/s/1HdZxwHrw3H8B6Ur4ctYOOQ  提取码:y18u 
安装完成在计算机管理中可看到:

在安装目录中打开:

我的ini文件如下:

  1. [http]
  2. port=10000
  3. default_username=admin
  4. default_password=admin
  5. [rtsp]
  6. port=10554
  7. ; rtsp 超时时间,包括RTSP建立连接与数据收发。
  8. timeout=28800
  9. ; 是否使能gop cache。如果使能,服务器会缓存最后一个I帧以及其后的非I帧,以提高播放速度。但是可能在高并发的情况下带来内存压力。
  10. gop_cache_enable=1
  11. ; 是否使能向服务器推流或者从服务器播放时验证用户名密码. [注意] 因为服务器端并不保存明文密码,所以推送或者播放时,客户端应该输入密码的md5后的值。
  12. ; password should be the hex of md5(original password)
  13. authorization_enable=0
  14. ; 是否使能推送的同事进行本地存储,使能后则可以进行录像查询与回放。
  15. save_stream_to_local=1
  16. ;easydarwin使用ffmpeg工具来进行存储。这里表示ffmpeg的可执行程序的路径
  17. ffmpeg_path=E:\tools\nginx\ffmpeg\bin\ffmpeg
  18. ;本地存储所将要保存的根目录。如果不存在,程序会尝试创建该目录。
  19. m3u8_dir_path=F:\record
  20. ;切片文件时长。本地存储时,将以该时间段为标准来生成ts文件(该时间+一个I帧间隔),单位秒。
  21. ;如果需要直播,这个值设小点,但是这样会产生很多ts文件;如果不需要直播,只要存储的话,可设大些。
  22. ts_duration_second=3
  23. ;key为拉流时的自定义路径,value为ffmpeg转码格式,比如可设置为-c:v copy -c:a copy,表示copy源格式;default表示使用ffmpeg内置的输出格式,会进行转码。
  24. /stream_265=default

这里要去下载个FFmpeg,并且配置成ffmpeg_path,下载链接:链接:https://pan.baidu.com/s/1btHQR4Ik3RKApjKPzvTUiw  提取码:2yl8 (直播需要)

本身的EasyDarwin有自己的接口文档:http://localhost:10000/apidoc/

所以可支持多语言,你只要发送HTTP请求即可。

这里先简单说下不用摄像头的rtsp的流:海康、大华、星邦网络摄像头的 RTSP协议 地址与格式

例如海康:rtsp://admin:worthsen123456@192.168.1.66:554/H.264/ch1/main/av_stream

username: 用户名。例如admin。

password: 密码。例如worthsen123456。

ip: 为设备IP。例如 192.168.1.66。

port: 端口号默认为554,若为默认可不填写。

codec:有h264、MPEG-4、mpeg4这几种。

channel: 通道号,起始为1。例如通道1,则为ch1。

subtype: 码流类型,主码流为main,辅码流为sub。

我这边用的是JAVA,写的辅助工具类如下:

  1. public class EasyDarwinUtils {
  2. private static String serverAddress = localhost;//可自行修改
  3. private static String serverPort = 10000;
  4. private static String URL = serverAddress + ":" + serverPort;
  5. private static final String PUSH = URL + "/api/v1/stream/start";
  6. private static final String DELPUSH = URL + "/api/v1/stream/stop";
  7. private static final String Find = URL + "/api/v1/pushers";
  8. public static enum PassWAY {
  9. TCP, UDP
  10. }
  11. public static enum FloatWay {
  12. main, sub
  13. }
  14. public static final String stop(String id) {
  15. String param = "id=" + id.replaceAll("\"", "");
  16. try {
  17. return sendGet(DELPUSH, param);
  18. } catch (IOException e) {
  19. // TODO Auto-generated catch block
  20. e.printStackTrace();
  21. }
  22. return null;
  23. }
  24. public static final String rtspUrl(String name, String pwd, String ip, int port, String code, String channel, FloatWay f) {
  25. if (StringUtils.isBlank(name) || StringUtils.isBlank(pwd) || StringUtils.isBlank(ip)) {
  26. return null;
  27. }
  28. if (port == 0) {
  29. port = 554;
  30. }
  31. if (StringUtils.isBlank(code)) {
  32. code = "h264";
  33. }
  34. if (StringUtils.isBlank(channel)) {
  35. code = "ch1";
  36. }
  37. return "rtsp://" + name + ":" + pwd + "@" + ip + ":" + port + "/" + code + "/" + channel + "/" + f
  38. + "/av_stream";
  39. }
  40. public static final String start(String rtspUrl, String cumtomPath) {
  41. return start(rtspUrl, cumtomPath, PassWAY.TCP);
  42. }
  43. public static final String start(String rtspUrl, String cumtomPath, PassWAY way) {
  44. String param = "url=" + rtspUrl + "&customPath=" + cumtomPath + "&transType=" + way;
  45. try {
  46. return sendGet(PUSH, param);
  47. } catch (IOException e) {
  48. // TODO Auto-generated catch block
  49. e.printStackTrace();
  50. }
  51. return "Path";
  52. }
  53. public static final String find(String rtsp) {
  54. String param = "q=" + rtsp;
  55. try {
  56. return sendGet(Find, param);
  57. } catch (IOException e) {
  58. // TODO Auto-generated catch block
  59. e.printStackTrace();
  60. }
  61. return null;
  62. }
  63. private static String sendGet(String url, String param) throws UnsupportedEncodingException, IOException {
  64. String result = "";
  65. BufferedReader in = null;
  66. HttpURLConnection conn = null;
  67. String urlName = url + "?" + param;
  68. System.out.println(urlName);
  69. URL realUrl = new URL(urlName);
  70. // 打开和URL之间的连接
  71. conn = (HttpURLConnection) realUrl.openConnection();
  72. // 设置通用的请求属性
  73. conn.setRequestProperty("accept", "*/*");
  74. conn.setRequestProperty("connection", "Keep-Alive");
  75. conn.setRequestProperty("user-agent", "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
  76. conn.setRequestProperty("Accept-Charset", "utf-8");
  77. conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded;charset=" + "utf-8");
  78. conn.setDoInput(true);
  79. conn.setRequestMethod("GET");
  80. // 建立实际的连接
  81. conn.connect();
  82. // 获取所有响应头字段
  83. Map<String, List<String>> map = conn.getHeaderFields();
  84. // 遍历所有的响应头字段
  85. // for (String key : map.keySet()) {
  86. // System.out.println(key + "--->" + map.get(key));
  87. // }
  88. // 定义BufferedReader输入流来读取URL的响应
  89. in = new BufferedReader(new InputStreamReader(conn.getInputStream(), "utf-8"));
  90. String line;
  91. while ((line = in.readLine()) != null) {
  92. result += line;
  93. }
  94. return result;
  95. }
  96. }

测试:

  1. public static void main(String[] args) {
  2. System.out.println(start("rtsp://admin:12345@192.168.1.64:554/h264/ch1/main/av_stream", "192.168.1.64/main"));
  3. }

控制台打印的是推流的ID :

看下有没有成功:

VLC播放rtsp流的方法百度一下,我这边用的是VLC player:

可以看到我们已经成功的拿到流了,不过web端怎么显示呢?

省略曲折的过程,先看我代码怎么拼接的:

  1. ipcEquipment.setEasySubUrl(ServerURL + "/record/" + ipcEquipment.getIp()+"/sub"+"/"+today+"/out.m3u8");
  2. ipcEquipment.setEasyUrl(ServerURL + "/record/" + ipcEquipment.getIp()+"/main"+"/"+today+"/out.m3u8");

实际上是:"localhost:10000/record/" + cumtomPath +"/"+today+"/out.m3u8",

cumtomPath 是我们请求接口是带的参数,today的样式为YYYYMMDD(如今天20190401),然后利用video标签进行播放:

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7. <meta name="apple-mobile-web-app-capable" content="yes">
  8. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  9. <meta name="format-detection" content="telephone=no">
  10. <meta name="wap-font-scale" content="no">
  11. <title>videojs支持hls直播实例</title>
  12. <link href="./video.css?v=bcd2ce1385" rel="stylesheet">
  13. <style type="text/css">
  14. video{
  15. display: block;
  16. width: 100%;
  17. height: auto;
  18. border: 1px solid;
  19. }
  20. button{
  21. width: 150px;
  22. height: 50px;
  23. line-height: 50px;
  24. text-align: center;
  25. margin:30px auto;
  26. display: block;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <video id="roomVideo" class="video-js vjs-default-skin vjs-big-play-centered" x-webkit-airplay="allow" poster="" webkit-playsinline playsinline x5-video-player-type="h5" x5-video-player-fullscreen="true" preload="auto">
  32. <source src="http://192.168.1.5:10000/record/192.168.1.64/sub/20190401/out.m3u8" type="application/x-mpegURL">
  33. </video>
  34. <button id="btn">play</button>
  35. <script src="./video.js?v=fc5104a2ab23"></script>
  36. <script src="./videojs-contrib-hls.js?v=c726b94b9923"></script>
  37. <script type="text/javascript">
  38. var myPlayer = videojs('roomVideo',{
  39. bigPlayButton : false,
  40. textTrackDisplay : false,
  41. posterImage: true,
  42. errorDisplay : false,
  43. controlBar : false
  44. },function(){
  45. console.log(this)
  46. this.on('loadedmetadata',function(){
  47. console.log('loadedmetadata');
  48. //加载到元数据后开始播放视频
  49. startVideo();
  50. })
  51. this.on('ended',function(){
  52. console.log('ended')
  53. })
  54. this.on('firstplay',function(){
  55. console.log('firstplay')
  56. })
  57. this.on('loadstart',function(){
  58. //开始加载
  59. console.log('loadstart')
  60. })
  61. this.on('loadeddata',function(){
  62. console.log('loadeddata')
  63. })
  64. this.on('seeking',function(){
  65. //正在去拿视频流的路上
  66. console.log('seeking')
  67. })
  68. this.on('seeked',function(){
  69. //已经拿到视频流,可以播放
  70. console.log('seeked')
  71. })
  72. this.on('waiting',function(){
  73. console.log('waiting')
  74. })
  75. this.on('pause',function(){
  76. console.log('pause')
  77. })
  78. this.on('play',function(){
  79. console.log('play')
  80. })
  81. });
  82. document.getElementById('btn').addEventListener('click', function(){
  83. myPlayer.play();
  84. })
  85. var isVideoBreak;
  86. function startVideo() {
  87. myPlayer.play();
  88. //微信内全屏支持
  89. document.getElementById('roomVideo').style.width = window.screen.width + "px";
  90. document.getElementById('roomVideo').style.height = window.screen.height + "px";
  91. //判断开始播放视频,移除高斯模糊等待层
  92. var isVideoPlaying = setInterval(function(){
  93. var currentTime = myPlayer.currentTime();
  94. if(currentTime > 0){
  95. $('.vjs-poster').remove();
  96. clearInterval(isVideoPlaying);
  97. }
  98. },200)
  99. //判断视频是否卡住,卡主3s重新load视频
  100. var lastTime = -1,
  101. tryTimes = 0;
  102. clearInterval(isVideoBreak);
  103. isVideoBreak = setInterval(function(){
  104. var currentTime = myPlayer.currentTime();
  105. console.log('currentTime'+currentTime+'lastTime'+lastTime);
  106. if(currentTime == lastTime){
  107. //此时视频已卡主3s
  108. //设置当前播放时间为超时时间,此时videojs会在play()后把currentTime设置为0
  109. myPlayer.currentTime(currentTime+10000);
  110. myPlayer.play();
  111. //尝试5次播放后,如仍未播放成功提示刷新
  112. if(++tryTimes > 5){
  113. alert('您的网速有点慢,刷新下试试');
  114. tryTimes = 0;
  115. }
  116. }else{
  117. lastTime = currentTime;
  118. tryTimes = 0;
  119. }
  120. },3000)
  121. }
  122. </script>
  123. </body>
  124. </html>

JS百度即可。

然后用谷歌浏览器运行:

各项时间差如图,如果嫌延迟时间太长(20s都忍受不了的),可以再调节ini文件中的ts_duration_second参数(调小)

总的来说到此应该结束了。

在此感谢EasyDarwin的开源者!

欢迎沟通交流,告辞!

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

闽ICP备14008679号