Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Getting Started with WebRTC

You're reading from   Getting Started with WebRTC If you have basic HTML and JavaScript, you're well on the way to adding real time, peer-to-peer communication to your web applications using WebRTC. This book shows you how through a totally practical, structured course.

Arrow left icon
Product type Paperback
Published in Sep 2013
Publisher Packt
ISBN-13 9781782166306
Length 114 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Rob Manson Rob Manson
Author Profile Icon Rob Manson
Rob Manson
Arrow right icon
View More author details
Toc

Table of Contents (15) Chapters Close

Getting Started with WebRTC
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
1. An Introduction to Web-based Real-Time Communication 2. A More Technical Introduction to Web-based Real-Time Communication FREE CHAPTER 3. Creating a Real-time Video Call 4. Creating an Audio Only Call 5. Adding Text-based Chat 6. Adding File Sharing 7. Example Application 1 – Education and E-learning 8. Example Application 2 – Team Communication Index

Establishing peer-to-peer streams


When the setup_video() function is called, and the stream is set up successfully, then it is added to peer_connection using the peer_connection.addStream(local_stream) call. This is then ready to be sent to the remote peer automatically once the full RTCPeerConnection is set up successfully.

// setup stream from the local camera
function setup_video() {
  get_user_media(
    {
      "audio": true, // request access to local microphone
      "video": true  // request access to local camera
    },
    function (local_stream) { // success callback
      ...
      // add local stream to peer_connection ready to be sent to the remote peer
      peer_connection.addStream(local_stream);
    },
    log_error // error callback
  );
}

Once the stream from the remote peer is received, then the peer_connection.onaddstream handler is called. This uses the connect_stream_to_src() method defined in the webrtc_polyfill.js code to display the stream in the <video> media...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime