pull.vue 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <template>
  2. <el-row :gutter="15">
  3. <!--安防摄像头接入-->
  4. <el-col :span="20" :xs="15">
  5. <ContentWrap>
  6. <el-input v-model="rtspAddr" class="!w-450px" placeholder="请输入RTSP/RTMP视频拉流地址" />
  7. <el-button @click="handleChange">接入</el-button>
  8. </ContentWrap>
  9. <ContentWrap>
  10. <video id="video" autoplay controls width="500" height="400"></video>
  11. </ContentWrap>
  12. </el-col>
  13. </el-row>
  14. </template>
  15. <script>
  16. let rtspAddr
  17. export default {
  18. name: 'Webrtc',
  19. data() {
  20. return {
  21. webRtcServer: null,
  22. }
  23. },
  24. mounted() {
  25. //转码服务器暂时先写死,然后我在做活,测试用
  26. this.webRtcServer = new WebRtcStreamer('video', location.protocol + '//123.60.223.250:18000')
  27. //这个拉流的服务暂时写死,为了效果
  28. this.rtspAddr = 'rtsp://caoyang:gyee@123.60.223.250:38554/cy12345'
  29. this.webRtcServer.connect(this.rtspAddr);
  30. },
  31. beforeUnmount() {
  32. this.webRtcServer.disconnect()
  33. this.webRtcServer = null
  34. },
  35. methods: {
  36. handleChange() {
  37. console.log(this.rtspAddr);
  38. if (this.rtspAddr) {
  39. console.log('正在拉流');
  40. this.webRtcServer.connect(this.rtspAddr);
  41. } else {
  42. ElMessage.error('请填写正确地址,地址格式为:rtsp://用户名:密码@地址:端口/应用ID')
  43. }
  44. }
  45. }
  46. }
  47. </script>
  48. <style scoped></style>