WebRTC实时通信系列教程10 恭喜完成本系列课程

来源:互联网 发布:2012年全国普法数据 编辑:程序博客网 时间:2024/06/05 06:57

【转载请注明出处: http://blog.csdn.net/leytton/article/details/76846455】

 PS:如果本文对您有帮助,请点个赞让我知道哦~微笑

《WebRTC实时通信系列教程》翻译自《Real time communication with WebRTC》

示例代码下载http://download.csdn.net/detail/leytton/9923708

WebRTC实时通信系列教程1 介绍

WebRTC实时通信系列教程2 概述

WebRTC实时通信系列教程3 获取示例代码

WebRTC实时通信系列教程4 从摄像头获取视频流

WebRTC实时通信系列教程5 RTCPeerConnection传输视频

WebRTC实时通信系列教程6 使用RTCDataChannel传输数据

WebRTC实时通信系列教程7 使用Socket.IO搭建信令服务器交换信息

WebRTC实时通信系列教程8 打通P2P连接和信令通信

WebRTC实时通信系列教程9 数据通道图片传输

WebRTC实时通信系列教程10 恭喜完成本系列课程

一、译文

恭喜你你建立了一个实时视频和数据通信应用程序!

1、你学习了

  • 从摄像头获取视频.
  • 使用RTCPeerConnection传输视频流.
  • 使用RTCDataChannel传输数据.
  • 创建信令服务器传输数据.
  • 打通P2P连接和信令通信.
  • 拍照并用数据通道分享.

2、接下来

  • 参考学习WebRTC聊天应用AppRTC的代码和框架: app, code.
  • 尝试 github.com/webrtc/samples 上的 live demos .

3、更多资料

  • 这里有很多入门WebRTC的资料: webrtc.org/start.


二、原文

摘自https://codelabs.developers.google.com/codelabs/webrtc-web/#9


10Congratulations

You built an app to do realtime video streaming and data exchange!

What you learned

In this codelab you learned how to:

  • Get video from your webcam.
  • Stream video with RTCPeerConnection.
  • Stream data with RTCDataChannel.
  • Set up a signaling service to exchange messages.
  • Combine peer connection and signaling.
  • Take a photo and share it via a data channel.

Next steps

  • Look at the code and architecture for the canonical WebRTC chat application AppRTC: app, code.
  • Try out the live demos from github.com/webrtc/samples.

Learn more

  • A range of resources for getting started with WebRTC are available from webrtc.org/start.