【webRTC】一个基于 tornado 和 webRTC 的点对点视频语音文字聊天室

简介

  • 一个基于 tornado 和 webRTC 的点对点视频语音文字聊天室

对webRTC的连接过程的理解

# webRTC连接过程中的4种角色
(1)Signaling Server     (收发信息服务器)
(2)ICE/TURN/STUN Server (IP,端口,MAC信息处理服务器)
(3)Remote Peer          (远端)
(4)Local Peer           (本地端)

# webRTC链接建立过程
(1)Local Peer通过websocket连接Signaling Server2)Remote Peer通过websocket连接Signaling Server3)Local Peer连接ICE/TURN/STUN Server,获取对外IP,端口,MAC
(4)Remote Peer连接ICE/TURN/STUN Server,获取对外IP,端口,MAC
(5)Local Peer发送offer sdp信息给Remote Peer,目的是告诉对方我是谁
(6)Remote Peer回复answer sdp信息给Local Peer,连接建立

代码

  • https://github.com/ns2250225/webRTC-tornado

效果图



你可能感兴趣的:(Web,web技术实验室)