SlideShare a Scribd company logo
Web RTC
Web RTC introduced by World Wide Web Consortium (W3C). That supports
browser-to browser applications for voice calling, video chat, and P2P file
sharing.
If you want to try out? web RTC available for Chrome, Opera, and Firefox. A good
place to start is the simple video chat application at here . Web RTC implements
three API's as shown below .
๏ถ MediaStream - get access to the user's camera and microphone.
๏ถ RTCPeerConnection - get access to audio or video calling facility.
๏ถ RTCDataChannel - get access to peer-to-peer communication.
MediaStream
The MediaStream represents synchronized streams of media, For an example,
Click on HTML5 Video player in HTML5 demo section or else click here .
The above example contains stream.getAudioTracks() and stream. VideoTracks().
If there is no audio tracks, it returns an empty array and it will check video
stream,if webcam connected, stream.getVideoTracks() returns an array of one
MediaStreamTrack representing the stream from the webcam. A simple example
is chat applications, a chat application gets stream from web camera, rear
camera, microphone.
Sample code of MediaStream
function gotStream(stream) { window. AudioContext = window. AudioContext
window. webkitAudioContext; var audioContext new AudioContext();
mediaStreamSource . connect (audioContext . destination)
navigator . getUserMedia ( {audio : true} gotStream) ;
Screen capture
It's also possible in Chrome browser with mediaStreamSource and it requires HTTPS. This
feature is not yet available in opera. Sample demo is available at here
Session Control, Network & Media Information
Web RTC required peer-to-peer communication between browsers. This mechanism
required signalling, network information, session control and media information. Web
developers can choose different mechanism to communicate between the browsers such
as SIP or XMPP or any two way communications. A sample example of XHR is here.
Sample code of createSignaIingChannel()
var signalingChanne1 createSigna1ingChanne1() var pc; var configuration
// run start(true) to initiate a call function start(isCa11er) { pc new
RTCPeerConnection(configuration);
// send any ice candidates to the other peer pc . onicecandidate function evt) {
signalingChanne1.send(JSON. "candidate" : evt . candidate
// once remote stream arrives, show it in the remote video element pc . onaddstream function
(evt) { remoteView. s rc URL . createObjectURL (evt . stream) ;
// get the Local stream, show it in the Local video element and send it
navigator.getUserMedia({ "audio" : true, "video" : true } , function (stream) { selfView. src URL.
createObjectURL(stream); pc . addStream(stream)
if (isCa11er) pc . createOffer (gotDescription)
else pc . createAnswer(pc . remoteDescription, gotDescription)
function gotDescription(desc) { pc . setLoca1Description (desc) signalingChanne1. send
(JSON . stringify({ " sdp" : desc
signalingChanne1. onmessage function (evt) { if ( ! pc) start (false) var signal JSON .
parse(evt . data)
if (signal.sdp) pc. setRemoteDescription(new RTCSessionDescription(signa1.sdp
else pc . addlceCandidate(new RTCIceCandidate(signa1. candidate));

More Related Content

What's hot

Networking chapter VII
Networking chapter VIINetworking chapter VII
Networking chapter VII
Jayakumar Balasubramanian
ย 
Ch10
Ch10Ch10
Ch10
tejindershami
ย 
ICMP
ICMPICMP
ICMP
Naveed Channa
ย 
Basics of sockets
Basics of socketsBasics of sockets
Basics of sockets
AviNash ChaVhan
ย 
Multipath TCP as Security Solution
Multipath TCP as Security SolutionMultipath TCP as Security Solution
Multipath TCP as Security Solution
Nishant Pawar
ย 
Lect16
Lect16Lect16
Lect16
Vandana Gupta
ย 
Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014
Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014
Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014
ฤแป“ng Quแป‘c Vฦฐฦกng
ย 
Ip and icmp
Ip and icmpIp and icmp
Ip and icmp
Programmer
ย 
Chap 13 stream control transmission protocol
Chap 13 stream control transmission protocolChap 13 stream control transmission protocol
Chap 13 stream control transmission protocol
Noctorous Jamal
ย 
Chap 12 tcp
Chap 12 tcpChap 12 tcp
Chap 12 tcp
Noctorous Jamal
ย 
udp , tcp ,sctp
udp , tcp ,sctpudp , tcp ,sctp
udp , tcp ,sctp
AKSHIT KOHLI
ย 
Chap 19 ftp & tftp
Chap 19 ftp & tftpChap 19 ftp & tftp
Chap 19 ftp & tftp
Noctorous Jamal
ย 
Chap 12 tcp
Chap 12 tcpChap 12 tcp
Chap 12 tcp
Sparsh Samir
ย 
Lecture 5
Lecture 5Lecture 5
Lecture 5
ntpc08
ย 
Intake 38 11
Intake 38 11Intake 38 11
Intake 38 11
Mahmoud Ouf
ย 
ICMP
ICMPICMP
Serhii Zemlianyi "Error Retries with Exponential Backoff Using RabbitMQ"
Serhii Zemlianyi "Error Retries with Exponential Backoff Using RabbitMQ"Serhii Zemlianyi "Error Retries with Exponential Backoff Using RabbitMQ"
Serhii Zemlianyi "Error Retries with Exponential Backoff Using RabbitMQ"
LogeekNightUkraine
ย 
Chap 07 arp & rarp
Chap 07 arp & rarpChap 07 arp & rarp
Chap 07 arp & rarp
Noctorous Jamal
ย 
TCP & UDP Streaming Comparison and a Study on DCCP & SCTP Protocols
TCP & UDP Streaming Comparison and a Study on DCCP & SCTP ProtocolsTCP & UDP Streaming Comparison and a Study on DCCP & SCTP Protocols
TCP & UDP Streaming Comparison and a Study on DCCP & SCTP Protocols
Peter SHIN
ย 
Icmp
IcmpIcmp

What's hot (20)

Networking chapter VII
Networking chapter VIINetworking chapter VII
Networking chapter VII
ย 
Ch10
Ch10Ch10
Ch10
ย 
ICMP
ICMPICMP
ICMP
ย 
Basics of sockets
Basics of socketsBasics of sockets
Basics of sockets
ย 
Multipath TCP as Security Solution
Multipath TCP as Security SolutionMultipath TCP as Security Solution
Multipath TCP as Security Solution
ย 
Lect16
Lect16Lect16
Lect16
ย 
Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014
Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014
Www ccnav5 net_ccna_1_chapter_7_v5_0_exam_answers_2014
ย 
Ip and icmp
Ip and icmpIp and icmp
Ip and icmp
ย 
Chap 13 stream control transmission protocol
Chap 13 stream control transmission protocolChap 13 stream control transmission protocol
Chap 13 stream control transmission protocol
ย 
Chap 12 tcp
Chap 12 tcpChap 12 tcp
Chap 12 tcp
ย 
udp , tcp ,sctp
udp , tcp ,sctpudp , tcp ,sctp
udp , tcp ,sctp
ย 
Chap 19 ftp & tftp
Chap 19 ftp & tftpChap 19 ftp & tftp
Chap 19 ftp & tftp
ย 
Chap 12 tcp
Chap 12 tcpChap 12 tcp
Chap 12 tcp
ย 
Lecture 5
Lecture 5Lecture 5
Lecture 5
ย 
Intake 38 11
Intake 38 11Intake 38 11
Intake 38 11
ย 
ICMP
ICMPICMP
ICMP
ย 
Serhii Zemlianyi "Error Retries with Exponential Backoff Using RabbitMQ"
Serhii Zemlianyi "Error Retries with Exponential Backoff Using RabbitMQ"Serhii Zemlianyi "Error Retries with Exponential Backoff Using RabbitMQ"
Serhii Zemlianyi "Error Retries with Exponential Backoff Using RabbitMQ"
ย 
Chap 07 arp & rarp
Chap 07 arp & rarpChap 07 arp & rarp
Chap 07 arp & rarp
ย 
TCP & UDP Streaming Comparison and a Study on DCCP & SCTP Protocols
TCP & UDP Streaming Comparison and a Study on DCCP & SCTP ProtocolsTCP & UDP Streaming Comparison and a Study on DCCP & SCTP Protocols
TCP & UDP Streaming Comparison and a Study on DCCP & SCTP Protocols
ย 
Icmp
IcmpIcmp
Icmp
ย 

Similar to Html web rtc

Html5 rtc 2
Html5 rtc   2Html5 rtc   2
Html5 rtc 2
George Orhewere
ย 
WebRTC Seminar Report
WebRTC  Seminar ReportWebRTC  Seminar Report
WebRTC Seminar Report
srinivasa teja
ย 
WebRTC ... GWT & in-browser computation
WebRTC ... GWT & in-browser computationWebRTC ... GWT & in-browser computation
WebRTC ... GWT & in-browser computation
JooinK
ย 
Plivo webrtc telephony in your browser
Plivo webrtc telephony in your browserPlivo webrtc telephony in your browser
Plivo webrtc telephony in your browser
ALTANAI BISHT
ย 
WebRTC presentation
WebRTC presentationWebRTC presentation
WebRTC presentation
Sreenivas Kappala
ย 
FMS 3.5
FMS 3.5FMS 3.5
FMS 3.5
Daniel Ramos
ย 
Java Networking
Java NetworkingJava Networking
Java Networking
Sunil OS
ย 
WbeRTC in IOT presented in KrankyGeek
WbeRTC in IOT presented in KrankyGeekWbeRTC in IOT presented in KrankyGeek
WbeRTC in IOT presented in KrankyGeek
ALTANAI BISHT
ย 
Webrtc in Real world
Webrtc in Real world Webrtc in Real world
Webrtc in Real world
Hanumesh Palla
ย 
Using Groovy to empower WebRTC Network Systems
Using Groovy to empower WebRTC Network SystemsUsing Groovy to empower WebRTC Network Systems
Using Groovy to empower WebRTC Network Systems
antonry
ย 
WebRTC in action
WebRTC in actionWebRTC in action
WebRTC in action
Tho Q Luong Luong
ย 
An Instantaneous Introduction to the Alliance Access Grid
An Instantaneous Introduction to the Alliance Access GridAn Instantaneous Introduction to the Alliance Access Grid
An Instantaneous Introduction to the Alliance Access Grid
Videoguy
ย 
networks-lab-excercise3.pdf
networks-lab-excercise3.pdfnetworks-lab-excercise3.pdf
networks-lab-excercise3.pdf
Jayaprasanna4
ย 
Java Network Programming.pptx
Java Network Programming.pptxJava Network Programming.pptx
Java Network Programming.pptx
RoshniSundrani
ย 
Qtp not just for gui anymore
Qtp   not just for gui anymoreQtp   not just for gui anymore
Qtp not just for gui anymore
Pragya Rastogi
ย 
Kurento cpmx
Kurento cpmxKurento cpmx
Kurento cpmx
Ivan Gracia
ย 
What I learned about APIs in my first year at Google
What I learned about APIs in my first year at GoogleWhat I learned about APIs in my first year at Google
What I learned about APIs in my first year at Google
Tim Burks
ย 
Introduction to WebRTC
Introduction to WebRTCIntroduction to WebRTC
Introduction to WebRTC
Patrick Cason
ย 
GWT videocall: power-up your mobile & web app with WebRTC
GWT videocall:  power-up your mobile & web app with WebRTCGWT videocall:  power-up your mobile & web app with WebRTC
GWT videocall: power-up your mobile & web app with WebRTC
GWTcon
ย 
Signal r
Signal rSignal r
Signal r
Vasilios Kuznos
ย 

Similar to Html web rtc (20)

Html5 rtc 2
Html5 rtc   2Html5 rtc   2
Html5 rtc 2
ย 
WebRTC Seminar Report
WebRTC  Seminar ReportWebRTC  Seminar Report
WebRTC Seminar Report
ย 
WebRTC ... GWT & in-browser computation
WebRTC ... GWT & in-browser computationWebRTC ... GWT & in-browser computation
WebRTC ... GWT & in-browser computation
ย 
Plivo webrtc telephony in your browser
Plivo webrtc telephony in your browserPlivo webrtc telephony in your browser
Plivo webrtc telephony in your browser
ย 
WebRTC presentation
WebRTC presentationWebRTC presentation
WebRTC presentation
ย 
FMS 3.5
FMS 3.5FMS 3.5
FMS 3.5
ย 
Java Networking
Java NetworkingJava Networking
Java Networking
ย 
WbeRTC in IOT presented in KrankyGeek
WbeRTC in IOT presented in KrankyGeekWbeRTC in IOT presented in KrankyGeek
WbeRTC in IOT presented in KrankyGeek
ย 
Webrtc in Real world
Webrtc in Real world Webrtc in Real world
Webrtc in Real world
ย 
Using Groovy to empower WebRTC Network Systems
Using Groovy to empower WebRTC Network SystemsUsing Groovy to empower WebRTC Network Systems
Using Groovy to empower WebRTC Network Systems
ย 
WebRTC in action
WebRTC in actionWebRTC in action
WebRTC in action
ย 
An Instantaneous Introduction to the Alliance Access Grid
An Instantaneous Introduction to the Alliance Access GridAn Instantaneous Introduction to the Alliance Access Grid
An Instantaneous Introduction to the Alliance Access Grid
ย 
networks-lab-excercise3.pdf
networks-lab-excercise3.pdfnetworks-lab-excercise3.pdf
networks-lab-excercise3.pdf
ย 
Java Network Programming.pptx
Java Network Programming.pptxJava Network Programming.pptx
Java Network Programming.pptx
ย 
Qtp not just for gui anymore
Qtp   not just for gui anymoreQtp   not just for gui anymore
Qtp not just for gui anymore
ย 
Kurento cpmx
Kurento cpmxKurento cpmx
Kurento cpmx
ย 
What I learned about APIs in my first year at Google
What I learned about APIs in my first year at GoogleWhat I learned about APIs in my first year at Google
What I learned about APIs in my first year at Google
ย 
Introduction to WebRTC
Introduction to WebRTCIntroduction to WebRTC
Introduction to WebRTC
ย 
GWT videocall: power-up your mobile & web app with WebRTC
GWT videocall:  power-up your mobile & web app with WebRTCGWT videocall:  power-up your mobile & web app with WebRTC
GWT videocall: power-up your mobile & web app with WebRTC
ย 
Signal r
Signal rSignal r
Signal r
ย 

More from AbhishekMondal42

Oss evaluation-certification-oss-financial-advantages
Oss evaluation-certification-oss-financial-advantagesOss evaluation-certification-oss-financial-advantages
Oss evaluation-certification-oss-financial-advantages
AbhishekMondal42
ย 
Word press 01
Word press 01Word press 01
Word press 01
AbhishekMondal42
ย 
Word press posts(preview & publish)
Word press posts(preview & publish)Word press posts(preview & publish)
Word press posts(preview & publish)
AbhishekMondal42
ย 
Word press posts(add , edit , delete post)
Word press posts(add , edit , delete post)Word press posts(add , edit , delete post)
Word press posts(add , edit , delete post)
AbhishekMondal42
ย 
Word press pages(edit and delete)
Word press pages(edit and delete)Word press pages(edit and delete)
Word press pages(edit and delete)
AbhishekMondal42
ย 
Word press pages(add)
Word press pages(add)Word press pages(add)
Word press pages(add)
AbhishekMondal42
ย 
Word press media(add,insert,delete)
Word press media(add,insert,delete)Word press media(add,insert,delete)
Word press media(add,insert,delete)
AbhishekMondal42
ย 
Word press media library
Word press media libraryWord press media library
Word press media library
AbhishekMondal42
ย 
Word press widget management
Word press  widget managementWord press  widget management
Word press widget management
AbhishekMondal42
ย 
Word press view plugins
Word press  view pluginsWord press  view plugins
Word press view plugins
AbhishekMondal42
ย 
Word press user roles
Word press  user rolesWord press  user roles
Word press user roles
AbhishekMondal42
ย 
Word press theme management
Word press  theme managementWord press  theme management
Word press theme management
AbhishekMondal42
ย 
Word press personal profile
Word press  personal profileWord press  personal profile
Word press personal profile
AbhishekMondal42
ย 
Word press moderate comments
Word press  moderate commentsWord press  moderate comments
Word press moderate comments
AbhishekMondal42
ย 
Word press install plugins
Word press  install pluginsWord press  install plugins
Word press install plugins
AbhishekMondal42
ย 
Word press edit users
Word press  edit usersWord press  edit users
Word press edit users
AbhishekMondal42
ย 
Word press edit tags
Word press  edit tagsWord press  edit tags
Word press edit tags
AbhishekMondal42
ย 
Word press edit links
Word press  edit linksWord press  edit links
Word press edit links
AbhishekMondal42
ย 
Word press edit comments
Word press  edit commentsWord press  edit comments
Word press edit comments
AbhishekMondal42
ย 
Word press delete users
Word press  delete usersWord press  delete users
Word press delete users
AbhishekMondal42
ย 

More from AbhishekMondal42 (20)

Oss evaluation-certification-oss-financial-advantages
Oss evaluation-certification-oss-financial-advantagesOss evaluation-certification-oss-financial-advantages
Oss evaluation-certification-oss-financial-advantages
ย 
Word press 01
Word press 01Word press 01
Word press 01
ย 
Word press posts(preview & publish)
Word press posts(preview & publish)Word press posts(preview & publish)
Word press posts(preview & publish)
ย 
Word press posts(add , edit , delete post)
Word press posts(add , edit , delete post)Word press posts(add , edit , delete post)
Word press posts(add , edit , delete post)
ย 
Word press pages(edit and delete)
Word press pages(edit and delete)Word press pages(edit and delete)
Word press pages(edit and delete)
ย 
Word press pages(add)
Word press pages(add)Word press pages(add)
Word press pages(add)
ย 
Word press media(add,insert,delete)
Word press media(add,insert,delete)Word press media(add,insert,delete)
Word press media(add,insert,delete)
ย 
Word press media library
Word press media libraryWord press media library
Word press media library
ย 
Word press widget management
Word press  widget managementWord press  widget management
Word press widget management
ย 
Word press view plugins
Word press  view pluginsWord press  view plugins
Word press view plugins
ย 
Word press user roles
Word press  user rolesWord press  user roles
Word press user roles
ย 
Word press theme management
Word press  theme managementWord press  theme management
Word press theme management
ย 
Word press personal profile
Word press  personal profileWord press  personal profile
Word press personal profile
ย 
Word press moderate comments
Word press  moderate commentsWord press  moderate comments
Word press moderate comments
ย 
Word press install plugins
Word press  install pluginsWord press  install plugins
Word press install plugins
ย 
Word press edit users
Word press  edit usersWord press  edit users
Word press edit users
ย 
Word press edit tags
Word press  edit tagsWord press  edit tags
Word press edit tags
ย 
Word press edit links
Word press  edit linksWord press  edit links
Word press edit links
ย 
Word press edit comments
Word press  edit commentsWord press  edit comments
Word press edit comments
ย 
Word press delete users
Word press  delete usersWord press  delete users
Word press delete users
ย 

Recently uploaded

A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
Steve Thomason
ย 
skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)
Mohammad Al-Dhahabi
ย 
How to Setup Default Value for a Field in Odoo 17
How to Setup Default Value for a Field in Odoo 17How to Setup Default Value for a Field in Odoo 17
How to Setup Default Value for a Field in Odoo 17
Celine George
ย 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
deepaannamalai16
ย 
How to Manage Reception Report in Odoo 17
How to Manage Reception Report in Odoo 17How to Manage Reception Report in Odoo 17
How to Manage Reception Report in Odoo 17
Celine George
ย 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
deepaannamalai16
ย 
adjectives.ppt for class 1 to 6, grammar
adjectives.ppt for class 1 to 6, grammaradjectives.ppt for class 1 to 6, grammar
adjectives.ppt for class 1 to 6, grammar
7DFarhanaMohammed
ย 
Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)
nitinpv4ai
ย 
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
TechSoup
ย 
220711130100 udita Chakraborty Aims and objectives of national policy on inf...
220711130100 udita Chakraborty  Aims and objectives of national policy on inf...220711130100 udita Chakraborty  Aims and objectives of national policy on inf...
220711130100 udita Chakraborty Aims and objectives of national policy on inf...
Kalna College
ย 
CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...
CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...
CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...
Nguyen Thanh Tu Collection
ย 
CIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdfCIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdf
blueshagoo1
ย 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Henry Hollis
ย 
How to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in useHow to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in use
Celine George
ย 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
danielkiash986
ย 
Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
nitinpv4ai
ย 
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGHKHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
shreyassri1208
ย 
NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...
NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...
NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...
Payaamvohra1
ย 
220711130088 Sumi Basak Virtual University EPC 3.pptx
220711130088 Sumi Basak Virtual University EPC 3.pptx220711130088 Sumi Basak Virtual University EPC 3.pptx
220711130088 Sumi Basak Virtual University EPC 3.pptx
Kalna College
ย 
Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10
nitinpv4ai
ย 

Recently uploaded (20)

A Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two HeartsA Visual Guide to 1 Samuel | A Tale of Two Hearts
A Visual Guide to 1 Samuel | A Tale of Two Hearts
ย 
skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)
ย 
How to Setup Default Value for a Field in Odoo 17
How to Setup Default Value for a Field in Odoo 17How to Setup Default Value for a Field in Odoo 17
How to Setup Default Value for a Field in Odoo 17
ย 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
ย 
How to Manage Reception Report in Odoo 17
How to Manage Reception Report in Odoo 17How to Manage Reception Report in Odoo 17
How to Manage Reception Report in Odoo 17
ย 
Standardized tool for Intelligence test.
Standardized tool for Intelligence test.Standardized tool for Intelligence test.
Standardized tool for Intelligence test.
ย 
adjectives.ppt for class 1 to 6, grammar
adjectives.ppt for class 1 to 6, grammaradjectives.ppt for class 1 to 6, grammar
adjectives.ppt for class 1 to 6, grammar
ย 
Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)
ย 
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
ย 
220711130100 udita Chakraborty Aims and objectives of national policy on inf...
220711130100 udita Chakraborty  Aims and objectives of national policy on inf...220711130100 udita Chakraborty  Aims and objectives of national policy on inf...
220711130100 udita Chakraborty Aims and objectives of national policy on inf...
ย 
CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...
CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...
CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...
ย 
CIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdfCIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdf
ย 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
ย 
How to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in useHow to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in use
ย 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
ย 
Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
ย 
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGHKHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
ย 
NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...
NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...
NIPER 2024 MEMORY BASED QUESTIONS.ANSWERS TO NIPER 2024 QUESTIONS.NIPER JEE 2...
ย 
220711130088 Sumi Basak Virtual University EPC 3.pptx
220711130088 Sumi Basak Virtual University EPC 3.pptx220711130088 Sumi Basak Virtual University EPC 3.pptx
220711130088 Sumi Basak Virtual University EPC 3.pptx
ย 
Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10Haunted Houses by H W Longfellow for class 10
Haunted Houses by H W Longfellow for class 10
ย 

Html web rtc

  • 2. Web RTC introduced by World Wide Web Consortium (W3C). That supports browser-to browser applications for voice calling, video chat, and P2P file sharing. If you want to try out? web RTC available for Chrome, Opera, and Firefox. A good place to start is the simple video chat application at here . Web RTC implements three API's as shown below . ๏ถ MediaStream - get access to the user's camera and microphone. ๏ถ RTCPeerConnection - get access to audio or video calling facility. ๏ถ RTCDataChannel - get access to peer-to-peer communication.
  • 3. MediaStream The MediaStream represents synchronized streams of media, For an example, Click on HTML5 Video player in HTML5 demo section or else click here . The above example contains stream.getAudioTracks() and stream. VideoTracks(). If there is no audio tracks, it returns an empty array and it will check video stream,if webcam connected, stream.getVideoTracks() returns an array of one MediaStreamTrack representing the stream from the webcam. A simple example is chat applications, a chat application gets stream from web camera, rear camera, microphone. Sample code of MediaStream function gotStream(stream) { window. AudioContext = window. AudioContext window. webkitAudioContext; var audioContext new AudioContext(); mediaStreamSource . connect (audioContext . destination) navigator . getUserMedia ( {audio : true} gotStream) ;
  • 4. Screen capture It's also possible in Chrome browser with mediaStreamSource and it requires HTTPS. This feature is not yet available in opera. Sample demo is available at here Session Control, Network & Media Information Web RTC required peer-to-peer communication between browsers. This mechanism required signalling, network information, session control and media information. Web developers can choose different mechanism to communicate between the browsers such as SIP or XMPP or any two way communications. A sample example of XHR is here. Sample code of createSignaIingChannel()
  • 5. var signalingChanne1 createSigna1ingChanne1() var pc; var configuration // run start(true) to initiate a call function start(isCa11er) { pc new RTCPeerConnection(configuration); // send any ice candidates to the other peer pc . onicecandidate function evt) { signalingChanne1.send(JSON. "candidate" : evt . candidate // once remote stream arrives, show it in the remote video element pc . onaddstream function (evt) { remoteView. s rc URL . createObjectURL (evt . stream) ; // get the Local stream, show it in the Local video element and send it navigator.getUserMedia({ "audio" : true, "video" : true } , function (stream) { selfView. src URL. createObjectURL(stream); pc . addStream(stream) if (isCa11er) pc . createOffer (gotDescription) else pc . createAnswer(pc . remoteDescription, gotDescription) function gotDescription(desc) { pc . setLoca1Description (desc) signalingChanne1. send (JSON . stringify({ " sdp" : desc signalingChanne1. onmessage function (evt) { if ( ! pc) start (false) var signal JSON . parse(evt . data) if (signal.sdp) pc. setRemoteDescription(new RTCSessionDescription(signa1.sdp else pc . addlceCandidate(new RTCIceCandidate(signa1. candidate));