在学习WebRTC,找了些资料,记录一下,供以后查询。
有些需要翻墙才能看
WebRTC 介绍
官网在这里:https://webrtc.org/。然后这里有一个官方的Getting Started:https://webrtc.org/start/。
Google关于WebRTC的幻灯片:
然后是WebRTC的SPEC:
WebRTC项目源码地址:https://chromium.googlesource.com/external/webrtc。
Native开发文档:https://webrtc.org/native-code/development/。
教程
入门的,首选codelabs的Real time communication with WebRTC:
然后是html5rocks上的基础教程:
开发文档、入门教程,参考这里:
这里,http://piratefsh.github.io/projects/2015/08/27/webrtc-stun-turn-servers.html,是一个人部署stun和turn server的记录。
进阶一点的,看这个,比较完整的介绍和实践:
还有这个,介绍如何用WebRTC一步一步实现视频会议:
还找到一个中文版的教程,通过WebRTC实现实时视频通信:
STUN/TURN/Signaling解决方案
WebRTC需要Signaling、STUN、TURN等Server,Google有自己的,还有很多开源的,也有收费的。
免费的:
- Signaling Server需要自己实现,如果你用Nodejs和Socket.io的话,比较容易做。https://codelabs.developers.google.com/codelabs/webrtc-web这里就有一个示例。
- Google的STUN服务器:
stun:stun.l.google.com:19302
- restund:http://www.creytiv.com/restund.html。
- rfc5766-turn-server: https://code.google.com/p/rfc5766-turn-server。挪到这里了:https://github.com/coturn/rfc5766-turn-server/,支持STUN和TURN
- http://www.pjsip.org/, PJSIP,支持STUN、TURN、ICE。
- https://nice.freedesktop.org/wiki/,libnice,支持ICE和STUN。
- http://www.stunprotocol.org/,STUNTMAN
- https://sourceforge.net/projects/stun/,STUN client and server
- https://github.com/coturn/coturn,C++实现的STUN和TURN服务器,这里有一个安装指南:https://www.webrtc-experiment.com/docs/TURN-server-installation-guide.html
这里有一个WebRTC服务器搭建的文档:http://io.diveinedu.com/2015/02/05/%E7%AC%AC%E5%85%AD%E7%AB%A0-WebRTC%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%90%AD%E5%BB%BA.html。
收费的解决方案:
开源示例
还有一些开源的示例代码,这个比较全了:
对应的demo在这里(Chrome打开可以看效果):
回退一级,还有更多资源:
还有一个,SimpleWebRTC:
还有:
嗯,接下来这个更赞,支持多人视频会议,开源的:
世界上第一个基于HTML5的SIP客户端:https://www.doubango.org/sipml5/。他们的GitHub主页:https://github.com/DoubangoTelecom/doubango。
在线演示
搜集了一些在线演示的示例:
- https://apprtc.appspot.com
- http://www.simpl.info/getusermedia
- https://webrtc.github.io/samples
- http://webcamtoy.com/app/
- http://www.shinydemos.com/facekat/
- http://idevelop.ro/ascii-camera/
- https://meet.jit.si/,多人的视频会议
围绕WebRTC的框架和服务
框架,视频通信的:
- https://github.com/webrtc/adapter,封装了浏览器差异
- https://github.com/henrikjoreteg/SimpleWebRTC,前面说过这个链接了
- https://github.com/priologic/easyrtc
- https://github.com/webRTC/webRTC.io
Peer间传递数据的:
服务:
图书
- 《Real-Time Communication with WebRTC》,https://bloggeek.me/book-webrtc-salvatore-simon/
- https://bloggeek.me/best-webrtc-book/,这里介绍了5本书。
课程
在学习WebRTC,找了些资料,记录一下,供以后查询。
有些需要翻墙才能看
WebRTC 介绍
官网在这里:https://webrtc.org/。然后这里有一个官方的Getting Started:https://webrtc.org/start/。
Google关于WebRTC的幻灯片:
然后是WebRTC的SPEC:
WebRTC项目源码地址:https://chromium.googlesource.com/external/webrtc。
Native开发文档:https://webrtc.org/native-code/development/。
教程
入门的,首选codelabs的Real time communication with WebRTC:
然后是html5rocks上的基础教程:
开发文档、入门教程,参考这里:
这里,http://piratefsh.github.io/projects/2015/08/27/webrtc-stun-turn-servers.html,是一个人部署stun和turn server的记录。
进阶一点的,看这个,比较完整的介绍和实践:
还有这个,介绍如何用WebRTC一步一步实现视频会议:
还找到一个中文版的教程,通过WebRTC实现实时视频通信:
STUN/TURN/Signaling解决方案
WebRTC需要Signaling、STUN、TURN等Server,Google有自己的,还有很多开源的,也有收费的。
免费的:
- Signaling Server需要自己实现,如果你用Nodejs和Socket.io的话,比较容易做。https://codelabs.developers.google.com/codelabs/webrtc-web这里就有一个示例。
- Google的STUN服务器:
stun:stun.l.google.com:19302
- restund:http://www.creytiv.com/restund.html。
- rfc5766-turn-server: https://code.google.com/p/rfc5766-turn-server。挪到这里了:https://github.com/coturn/rfc5766-turn-server/,支持STUN和TURN
- http://www.pjsip.org/, PJSIP,支持STUN、TURN、ICE。
- https://nice.freedesktop.org/wiki/,libnice,支持ICE和STUN。
- http://www.stunprotocol.org/,STUNTMAN
- https://sourceforge.net/projects/stun/,STUN client and server
- https://github.com/coturn/coturn,C++实现的STUN和TURN服务器,这里有一个安装指南:https://www.webrtc-experiment.com/docs/TURN-server-installation-guide.html
这里有一个WebRTC服务器搭建的文档:http://io.diveinedu.com/2015/02/05/%E7%AC%AC%E5%85%AD%E7%AB%A0-WebRTC%E6%9C%8D%E5%8A%A1%E5%99%A8%E6%90%AD%E5%BB%BA.html。
收费的解决方案:
开源示例
还有一些开源的示例代码,这个比较全了:
对应的demo在这里(Chrome打开可以看效果):
回退一级,还有更多资源:
还有一个,SimpleWebRTC:
还有:
嗯,接下来这个更赞,支持多人视频会议,开源的:
世界上第一个基于HTML5的SIP客户端:https://www.doubango.org/sipml5/。他们的GitHub主页:https://github.com/DoubangoTelecom/doubango。
在线演示
搜集了一些在线演示的示例:
- https://apprtc.appspot.com
- http://www.simpl.info/getusermedia
- https://webrtc.github.io/samples
- http://webcamtoy.com/app/
- http://www.shinydemos.com/facekat/
- http://idevelop.ro/ascii-camera/
- https://meet.jit.si/,多人的视频会议
围绕WebRTC的框架和服务
框架,视频通信的:
- https://github.com/webrtc/adapter,封装了浏览器差异
- https://github.com/henrikjoreteg/SimpleWebRTC,前面说过这个链接了
- https://github.com/priologic/easyrtc
- https://github.com/webRTC/webRTC.io
Peer间传递数据的:
服务:
图书
- 《Real-Time Communication with WebRTC》,https://bloggeek.me/book-webrtc-salvatore-simon/
- https://bloggeek.me/best-webrtc-book/,这里介绍了5本书。
课程