java版本使用springboot vue websocket webrtc实现视频通话
admin 阅读: 2024-03-31
后台-插件-广告管理-内容页头部广告(手机) |
使用java版本 websocket webrtc实现视频通话
- 原理简单解释
- 使用技术
- 搭建websocket环境依赖
- 最终演示效果
原理简单解释
浏览器提供获取屏幕、音频等媒体数据的接口,
双方的媒体流数据通过Turn服务器传输
websocket传递信令服务
使用技术
- java jdk17
- springboot 3.2.2
- websocket
- 前端使用 vue
搭建websocket环境依赖
<dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-websocket</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies>- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
websocket的配置类
package com.example.webrtc.config; import com.example.webrtc.Interceptor.AuthHandshakeInterceptor; import com.example.webrtc.Interceptor.MyChannelInterceptor; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.messaging.converter.MessageConverter; import org.springframework.messaging.handler.invocation.HandlerMethodArgumentResolver; import org.springframework.messaging.handler.invocation.HandlerMethodReturnValueHandler; import org.springframework.messaging.simp.config.ChannelRegistration; import org.springframework.messaging.simp.config.MessageBrokerRegistry; import org.springframework.web.socket.config.annotation.*; import org.springframework.web.socket.server.standard.ServerEndpointExporter; import java.util.List; @Configuration @EnableWebSocketMessageBroker public class WebSocketConfig extends WebSocketMessageBrokerConfigurationSupport implements WebSocketMessageBrokerConfigurer { private static final Logger log = LoggerFactory.getLogger(WebSocketConfig.class); @Autowired private AuthHandshakeInterceptor authHandshakeInterceptor; @Autowired private MyChannelInterceptor myChannelInterceptor; @Bean public ServerEndpointExporter serverEndpointExporter(){ return new ServerEndpointExporter(); } @Override public void registerStompEndpoints(StompEndpointRegistry registry) { registry.addEndpoint("/chat-websocket") .setAllowedOriginPatterns("*") .addInterceptors(authHandshakeInterceptor) .setAllowedOriginPatterns("*") // .setHandshakeHandler(myHandshakeHandler) .withSockJS(); } @Override public void configureWebSocketTransport(WebSocketTransportRegistration registry) { registry.setMessageSizeLimit(Integer.MAX_VALUE); registry.setSendBufferSizeLimit(Integer.MAX_VALUE); super.configureWebSocketTransport(registry); } @Override public void configureMessageBroker(MessageBrokerRegistry registry) { //客户端需要把消息发送到/message/xxx地址 registry.setApplicationDestinationPrefixes("/webSocket"); //服务端广播消息的路径前缀,客户端需要相应订阅/topic/yyy这个地址的消息 registry.enableSimpleBroker("/topic", "/user"); //给指定用户发送消息的路径前缀,默认值是/user/ registry.setUserDestinationPrefix("/user/"); } @Override public void configureClientInboundChannel(ChannelRegistration registration) { registration.interceptors(myChannelInterceptor); } @Override public void configureClientOutboundChannel(ChannelRegistration registration) { WebSocketMessageBrokerConfigurer.super.configureClientOutboundChannel(registration); } @Override public void addArgumentResolvers(List<HandlerMethodArgumentResolver> argumentResolvers) { WebSocketMessageBrokerConfigurer.super.addArgumentResolvers(argumentResolvers); } @Override public void addReturnValueHandlers(List<HandlerMethodReturnValueHandler> returnValueHandlers) { WebSocketMessageBrokerConfigurer.super.addReturnValueHandlers(returnValueHandlers); } @Override public boolean configureMessageConverters(List<MessageConverter> messageConverters) { return WebSocketMessageBrokerConfigurer.super.configureMessageConverters(messageConverters); } }- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
控制层 WebSocketController
package com.example.webrtc.controller; import com.example.webrtc.config.Message; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.messaging.handler.annotation.MessageMapping; import org.springframework.messaging.simp.SimpMessagingTemplate; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import java.security.Principal; import java.util.HashMap; import java.util.Map; import java.util.concurrent.atomic.AtomicInteger; // 私信聊天的控制器 @RestController public class WebSocketController { @Autowired private SimpMessagingTemplate messagingTemplate; private AtomicInteger i=new AtomicInteger(1); @RequestMapping("/user") public String findUser(){ return "00"+i.decrementAndGet(); } @MessageMapping("/api/chat") //在springmvc 中可以直接获得principal,principal 中包含当前用户的信息 public void handleChat(Principal principal, Message messagePara) { String currentUserName = principal.getName(); System.out.println(currentUserName); try { messagePara.setFrom(principal.getName()); System.out.println("from" + messagePara.getFrom()); messagingTemplate.convertAndSendToUser(messagePara.getTo(), "/queue/notifications", messagePara); } catch (Exception e) { // 打印异常 e.printStackTrace(); } } }- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
前端交互拨号index.vue
<template> <div class="play-audio"> <h2 style="text-align: center;">播放页面</h2> <div class="main-box"> <video ref="localVideo" class="video" autoplay="autoplay"></video> <video ref="remoteVideo" class="video" height="500px" autoplay="autoplay"></video> </div> <div style="text-align: center;"> <el-button @click="requestConnect()" ref="callBtn">开始对讲</el-button> <el-button @click="hangupHandle()" ref="hangupBtn">结束对讲</el-button> </div> <div style="text-align: center;"> <label for="name">发送人:</label> <input type="text" id="name" readonly v-model="userId" class="form-control"/> </div> <div style="text-align: center;"> <label for="name">接收人:</label> <input type="text" id="name" v-model="toUserId" class="form-control"/> </div> </div> </template> <el-dialog :title="'提示'" :visible.sync="dialogVisible" width="30%"> <span>{{ toUserId + '请求连接!' }}</span> <span slot="footer" class="dialog-footer"> <el-button @click="handleClose">取 消</el-button> <el-button type="primary" @click="dialogVisibleYes">确 定</el-button> </span> </el-dialog> <script> import request from '@/utils/reeques' import Websocket from '@/utils/websocket' import Stomp from "stompjs"; import SockJS from "sockjs-client"; import adapter from "webrtc-adapter"; import axios from 'axios' export default { data() { return { stompClient: null, userId: '001', socket: null, toUserId: '', localStream: null, remoteStream: null, localVideo: null, remoteVideo: null, callBtn: null, hangupBtn: null, peerConnection: null, dialogVisible: false, msg: '', config: { iceServers: [ {urls: 'stun:global.stun.twilio.com:3478?transport=udp'} ], } }; }, computed: {}, methods: { handleClose() { this.dialogVisible = false }, dialogVisibleYes() { var _self = this; this.dialogVisible = false _self.startHandle().then(() => { _self.stompClient.send("/api/chat", _self.toUserId, {'type': 'start'}) }) }, requestConnect() { let that = this; if (!that.toUserId) { alert('请输入对方id') return false } else if (!that.stompClient) { alert('请先打开websocket') return false } else if (that.toUserId == that.userId) { alert('自己不能和自己连接') return false } //准备连接 that.startHandle().then(() => { that.stompClient.send("/api/chat", that.toUserId, {'type': 'connect'}) }) }, startWebsocket(user) { let that = this; that.stompClient = new Websocket(user); that.stompClient.connect(() => { that.stompClient.subscribe("/user/" + that.userId + "/queue/notifications", function (result) { that.onmessage(result) }) }) } , gotLocalMediaStream(mediaStream) { var _self = this; _self.localVideo.srcObject = mediaStream; _self.localStream = mediaStream; // _self.callBtn.disabled = false; } , createConnection() { var _self = this; _self.peerConnection = new RTCPeerConnection() if (_self.localStream) { // 视频轨道 const videoTracks = _self.localStream.getVideoTracks(); // 音频轨道 const audioTracks = _self.localStream.getAudioTracks(); // 判断视频轨道是否有值 if (videoTracks.length > 0) { console.log(`使用的设备为: ${videoTracks[0].label}.`); } // 判断音频轨道是否有值 if (audioTracks.length > 0) { console.log(`使用的设备为: ${audioTracks[0].label}.`); } _self.localStream.getTracks().forEach((track) => { _self.peerConnection.addTrack(track, _self.localStream) }) } // 监听返回的 Candidate _self.peerConnection.addEventListener('icecandidate', _self.handleConnection); // 监听 ICE 状态变化 _self.peerConnection.addEventListener('iceconnectionstatechange', _self.handleConnectionChange) //拿到流的时候调用 _self.peerConnection.addEventListener('track', _self.gotRemoteMediaStream); } , startConnection() { var _self = this; // _self.callBtn.disabled = true; // _self.hangupBtn.disabled = false; // 发送offer _self.peerConnection.createOffer().then(description => { console.log(`本地创建offer返回的sdp:\n${description.sdp}`) // 将 offer 保存到本地 _self.peerConnection.setLocalDescription(description).then(() => { console.log('local 设置本地描述信息成功'); // 本地设置描述并将它发送给远端 // _self.socket.send(JSON.stringify({ // 'userId': _self.userId, // 'toUserId': _self.toUserId, // 'message': description // })); _self.stompClient.send("/api/chat", _self.toUserId, description) }).catch((err) => { console.log('local 设置本地描述信息错误', err) }); }) .catch((err) => { console.log('createdOffer 错误', err); }); } , async startHandle() { this.callBtn = this.$refs.callBtn this.hangupBtn = this.$refs.hangupBtn this.remoteVideo = this.$refs.remoteVideo this.localVideo = this.$refs.localVideo var _self = this; // 1.获取本地音视频流 // 调用 getUserMedia API 获取音视频流 let constraints = { video: true, audio: { // 设置回音消除 noiseSuppression: true, // 设置降噪 echoCancellation: true, } } navigator.getUserMedia = navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia await navigator.mediaDevices.getUserMedia(constraints) .then(_self.gotLocalMediaStream) .catch((err) => { console.log('getUserMedia 错误', err); //创建点对点连接对象 }); _self.createConnection(); }, onmessage(e) { var _self = this; const description = e.message _self.toUserId = e.from switch (description.type) { case 'connect': _self.dialogVisible = true this.$confirm(_self.toUserId + '请求连接!', '提示', {}).then(() => { _self.startHandle().then(() => { _self.stompClient.send("/api/chat", _self.toUserId, {'type': 'start'}) }) }).catch(() => { }); break; case 'start': //同意连接之后开始连接 _self.startConnection() break; case 'offer': _self.peerConnection.setRemoteDescription(new RTCSessionDescription(description)).then(() => { }).catch((err) => { console.log('local 设置远端描述信息错误', err); }); _self.peerConnection.createAnswer().then(function (answer) { _self.peerConnection.setLocalDescription(answer).then(() => { console.log('设置本地answer成功!'); }).catch((err) => { console.error('设置本地answer失败', err); }); _self.stompClient.send("/api/chat", _self.toUserId, answer) }).catch(e => { console.error(e) }); break; case 'icecandidate': // 创建 RTCIceCandidate 对象 let newIceCandidate = new RTCIceCandidate(description.icecandidate); // 将本地获得的 Candidate 添加到远端的 RTCPeerConnection 对象中 _self.peerConnection.addIceCandidate(newIceCandidate).then(() => { console.log(`addIceCandidate 成功`); }).catch((error) => { console.log(`addIceCandidate 错误:\n` + `${error.toString()}.`); }); break; case 'answer': _self.peerConnection.setRemoteDescription(new RTCSessionDescription(description)).then(() => { console.log('设置remote answer成功!'); }).catch((err) => { console.log('设置remote answer错误', err); }); break; default: break; } }, hangupHandle() { var _self = this; // 关闭连接并设置为空 _self.peerConnection.close(); _self.peerConnection = null; // _self.hangupBtn.disabled = true; // _self.callBtn.disabled = false; _self.localStream.getTracks().forEach((track) => { track.stop() }) }, handleConnection(event) { var _self = this; // 获取到触发 icecandidate 事件的 RTCPeerConnection 对象 // 获取到具体的Candidate console.log("handleConnection") const peerConnection = event.target; const icecandidate = event.candidate; if (icecandidate) { _self.stompClient.send("/api/chat", _self.toUserId, { type: 'icecandidate', icecandidate: icecandidate }) } }, gotRemoteMediaStream(event) { var _self = this; console.log('remote 开始接受远端流') if (event.streams[0]) { console.log(' remoteVideo') _self.remoteVideo.srcObject = event.streams[0]; _self.remoteStream = event.streams[0]; } }, handleConnectionChange(event) { const peerConnection = event.target; console.log('ICE state change event: ', event); console.log(`ICE state: ` + `${peerConnection.iceConnectionState}.`); }, log(v) { console.log(v) }, }, created() { let that = this; request({ url: '/user', method: 'get', params: {} }).then(response => { console.log(response.data) that.userId = response.data; this.startWebsocket(response.data) debugger }) debugger } } </script> <style lang="scss"> .spreadsheet { padding: 0 10px; margin: 20px 0; } .main-box { display: flex; flex-direction: row; align-items: center; justify-content: center; } </style>- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
- 236
- 237
- 238
- 239
- 240
- 241
- 242
- 243
- 244
- 245
- 246
- 247
- 248
- 249
- 250
- 251
- 252
- 253
- 254
- 255
- 256
- 257
- 258
- 259
- 260
- 261
- 262
- 263
- 264
- 265
- 266
- 267
- 268
- 269
- 270
- 271
- 272
- 273
- 274
- 275
- 276
- 277
- 278
- 279
- 280
- 281
- 282
- 283
- 284
- 285
- 286
- 287
- 288
- 289
- 290
- 291
- 292
- 293
- 294
- 295
- 296
- 297
- 298
- 299
- 300
- 301
- 302
- 303
- 304
- 305
- 306
- 307
- 308
- 309
- 310
- 311
- 312
- 313
- 314
- 315
- 316
- 317
- 318
- 319
- 320
- 321
- 322
- 323
- 324
- 325
- 326
- 327
- 328
- 329
- 330
- 331
- 332
- 333
- 334
- 335
最终演示效果
具体代码查看
声明
1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。
在线投稿:投稿 站长QQ:1888636
后台-插件-广告管理-内容页尾部广告(手机) |