极速搭建RTMP直播流服务器+webapp (vue) 简单实现直播效果
在尝试使用webrtc实现webapp直播失败后,转移思路开始另外寻找可行的解决方案。在网页上尝试使用webrtc实现视频的直播与看直播,在谷歌浏览器以及safari浏览器上测试是可行的。但是基于基座打包为webapp后不行,所以直播的话建议还是原生的好。hbuilder自带的h5+有提供了原生的视频播放和推流录制上传,但是需要有一个rtmp直播流服务器,用于测试和开发,这时就需要自建rtmp服务推流了。
极速搭建简单rtmp直播流服务器
开发环境:macos
需要安装并启动docker:➡️ docker community edition for mac
$ docker --version docker version 18.06.1-ce, build e68fc7a $ docker-compose --version docker-compose version 1.22.0, build f46880f $ docker-machine --version docker-machine version 0.15.0, build b48dc28d
如果是自己使用nginx搭建rtmp直播服务器,毕竟是接触这个不到半天,还是有点复杂,编译设置有点繁琐。好在docker上有大把别人编译设置好的rtmp环境,所以先拿来玩着先,有空还是自己要来搞搞的。这里用到的是alfg/nginx-rtmp库。
- pull docker image and run:
docker pull alfg/nginx-rtmp docker run -it -p 1935:1935 -p 8080:80 --rm alfg/nginx-rtmp
- build and run container from source:
docker build -t nginx-rtmp . docker run -it -p 1935:1935 -p 8080:80 --rm nginx-rtmp
直播推流地址
rtmp://<server ip>:1935/stream/$stream_name
播流地址
http://<server ip>:8080/live/$stream_name.m3u8
使用obs测试rtmp直播流服务器
下载安装 obs,在随便网上找一条视频在obs无限循环播放。obs=>设置=>流
开始推流
safari浏览器测试效果
rtmp直播流服务器简单搭建成功,这个只是简单的实现了 推流播流而已,测试发现直播有延迟大概10s左右。还需要调配像素以及贞。或者说使用成熟的第三方的推流地址与播流地址。
webapp(vue)移动端直播
新建一个vue 项目
livepusher.vue
<template> <div> <br /> <div id="pusher" style="width:300px;height:400px;background-color:#000000;margin:auto"></div> <br /> <div style="text-align:center; margin:auto;"> <input id="path" type="text" value="" placeholder="请输入直播服务器地址(rtmp)" /> <button id="pp" v-on:click="pppusher()">开始</button> </div> <div class="button" v-on:click="switchcamera()">切换摄像头</div> </div> </template> <script> export default { data () { return { bstart: false, pusher: null } }, created () { document.addeventlistener("plusready", this.plusready, false); }, methods: { switchcamera () { this.pusher.switchcamera(); }, plusready () { // 创建直播推流控件 this.pusher = new plus.video.livepusher("pusher", { url: "rtmp://testlivesdk.v0.upaiyun.com/live/upyunb" }); // 监听状态变化事件 this.pusher.addeventlistener( "statechange", function (e) { console.log("statechange: " + json.stringify(e)); }, false ); }, pppusher () { if (this.bstart) { this.pusher.stop(); this.bstart = false; } else { var path = document.getelementbyid("path").value; if (path && path.length > 0) { this.pusher.setoptions({ url: path }); this.pusher.start(); this.bstart = true; } else { plus.nativeui.toast("请输入直播服务器地址"); } } var pp = document.getelementbyid("pp"); pp.innertext = this.bstart ? "停止" : "开始"; } } } </script> <style scoped> input { width: 70%; font-size: 16px; padding: 0.2em 0.2em; border: 1px solid #00b100; -webkit-user-select: text; } .button, button { width: 20%; margin: 6px 0 6px 6px; font-size: 16px; color: #fff; background-color: #00cc00; border: 1px solid #00b100; padding: 0.2em 0em; -webkit-border-radius: 5px; border-radius: 5px; } </style>
videoplayer.vue
<template> <div> <br /> <div id="video" style="width:98%;height:300px;background-color:#000000;margin:auto"></div> <br /> <div style="text-align:center; margin:auto;"> <input id="path1" type="text" value="http://192.168.100.14:8080/live/hello.m3u8" placeholder="请输入视频地址,支持mp4/flv格式" /> <button onclick="playvideo1()">播放</button> <br /> <input id="path2" type="text" value="rtmp://192.168.100.14:1935/stream" placeholder="请输入视频地址,支持rtmp直播" /> <button onclick="playvideo2()">直播</button> </div> <div id="pp" class="button" onclick="ppvideo()">播放</div> </div> </template> <script> export default { data () { return { bstart: false, pusher: null } }, created () { document.addeventlistener('plusready', this.plusready, false); }, methods: { plusready () { // 创建视频播放控件 video = new plus.video.videoplayer('video', { src: 'http://192.168.100.14:8080/live/hello.m3u8' }); video.addeventlistener('play', function () { updateplaying(true); }, false); video.addeventlistener('pause', function () { updateplaying(false); }, false); }, // 播放 playvideo1 () { var path = document.getelementbyid('path1').value; if (path && path.length > 0) { video.setoptions({ src: path }); video.play(); } } , playvideo2 () { var path = document.getelementbyid('path2').value; if (path && path.length > 0) { video.setoptions({ src: path }); video.play(); } }, // 更新为播放状态 updateplaying (play) { playing = play; document.getelementbyid('pp').innertext = playing ? '暂停' : '播放'; }, // 播放/暂停 ppvideo () { playing ? video.pause() : video.play(); } } } </script> <style scoped> input { width: 70%; font-size: 16px; padding: 0.2em 0.2em; border: 1px solid #00b100; -webkit-user-select: text; } button, .button { width: 20%; margin: 6px 0 6px 6px; font-size: 16px; color: #fff; background-color: #00cc00; border: 1px solid #00b100; padding: 0.2em 0em; -webkit-border-radius: 5px; border-radius: 5px; } </style>
推流效果与播流效果
参考链接:
http://ask.dcloud.net.cn/article/13416
https://imququ.com/post/html5-live-player-3.html
https://blog.csdn.net/yelin042/article/details/78133945
上一篇: 快乐编程大本营【java语言训练班】第5课: java的数组编程
下一篇: python之列表