SlideShare une entreprise Scribd logo
1  sur  43
1
A real-time communication between the browsers.
Presented by,
B . SrinivasaTeja,
11G25A0501.
What’s WebRTC?
“ WebRTC is a new front in the long war for an open and
unencumbered web.
— Brendan Eich, inventor of JavaScript
2
• Web Real-Time Communication (WebRTC) is an upcoming standard that aims to enable
real-time communication among Web browsers in a peer-to-peer fashion.
• WebRTC project (opensource) aims to allow browsers to natively support interactive peer
to peer communications and real time data collaboration.
• Provide state of art audio/video communication stack in your browser.
What’s WebRTC?
3
Earlier Efforts
• Many web services already use RTC, but need downloads, native apps or
plugins. These includes Skype, Facebook (uses Skype) and Google Hangouts
(uses Google Talk plugin).
• Downloading, installing and updating plugins can be complex, error prone
and annoying.
• Plugins can be difficult to deploy, debug, troubleshoot, test and
maintain—and may require licensing and integration with complex,
expensive technology.
4
What does it change?
• No licenses or other fees.
• Integration via simple, standardized Web APIs.
• No Proprietary plugins.
• No Security issues.
• No downloads, no installation.
• Just surf to the right address!
5
Aims of WebRTC
• State of art audio/video media communication stack in your browser.
• Seamless person-to-person communication.
• Specification to achieve inter-operability among Web browsers.
• To create a common platform for real-time communication- so that your PC,
your Phone, your TV can all communicate.
• Low cost and highly efficient communication solution to enterprises.
6
WebRTC Support :
• WebRTC coming to almost all desktop web browsers by EOY -2012.
1. Chrome 21
2. Opera 12
3. Firefox 17
4. IE (via Chrome Frame).
• Mobile browser support also will follow.
• Native C++ versions ofWebRTC stack also available.
7
Architecture
8
• At startup, browsers do not know each other.
• JavaScript mediates the setup process through server.
• Media flows through the shortest possible path for latency.
Architecture
9
Key Features :
• Media Streams :- access to the users camera and mic.
• Peer Connection :- easy audio/video calls.
• Data Channels :- P2P application data transfer.
10
11
WebRTC API Stack View
DataChannel API
PeerConnection API
WebRTC APP
DataChannel API
PeerConnection API
WebRTC APPDTLS
SRTP/SCTP
ICE
UDP
Media Streams :
• Represents a media source that is containing 1 or more synchronized media
stream tracks.
• Media stream can be converted to an object URL, and passed to </video> element.
• Use the getUserMedia api to get a media stream for the webcam/mic.
http://webcamtoy.com/app/ --- Uses Canvas andWebGL.
http://bouncyballs.org/ --- Uses Canvas andWebGL.
http://neave.com/tic-tac-toe/ -- Uses Canvas.
12
WebRTC Media Engine
13
getUserMedia
• A MediaStream is an abstract representation of an actual data stream of audio
or video.
• Serves as a handle for managing actions on the media stream.
• A MediaStream can be extended to represent a stream that either comes from
(remote stream) or is sent to (local stream) a remote node.
• A LocalMediaStream represents a media stream from a local media-capture
device (such as a webcam or microphone). 14
15
getUserMedia
• The MediaStream represents synchronized streams of media. For example, a
stream taken from camera and microphone input has synchronized video and
audio tracks.
• The getUserMedia() method takes three parameters:
• A constraints object.
• A success callback which, if called, is passed a LocalMediaStream.
• A failure callback which, if called, is passed an error object.
• In Chrome, the URL.createObjectURL () method converts a LocalMediaStream to a
Blob URL which can be set as the src of a video element.
<video id="sourcevid" autoplay></video>
<script>
var video = document.getElementById('sourcevid');
navigator.getUserMedia('video', success, error);
function success(stream) {
video.src = window.URL.createObjectURL(stream);
}
</script>
16
getUserMedia
17
WebRTC App. Need TO
• Get streaming audio, video or other data.
• Get network information such as IP address and port, and exchange this
with other WebRTC clients (known as peers).
• Coordinate signaling communication to report errors and initiate or close
sessions.
• Exchange information about media and client capability, such as resolution
and codecs. 18
RTCPeerConnection
• API for establishing Audio/Video calls (“sessions”).
• Built-in :-
1. Peer-to-Peer
2. Codec control
3. Encryption
4. Bandwidth Management.
5 . C o m m u n i c a t i o n s a r e c o o r d i n a t e d v i a a s i g n a l i n g c h a n n e l p r o v i d e d b y s c r i p t i n g c o d e i n t h e p a g e v i a t h e W e b s e r v e r — f o r i n s t a n c e , u s i n g X M L H t t p R e q u e s t o r W e b S o c k e t .
19
In the real world, WebRTC needs servers, so the following can happen:
• Users discover each other and exchange 'real world' details such as names.
• WebRTC client applications (peers) exchange network information.
• Peers exchange data about media such as video format and resolution.
• WebRTC client applications traverse NAT gateways and firewalls.
20
RTCPeerConnection
21
RTC Peer Connection
How peers connect?
22
App Engine Example :
23
https://apprtc.appspot.com
Setting Up a Session :
• To start a session a client needs –
1. Local Session Description (describes the configuration of a local side)
2. Remote Session Description (describes the configuration of remote side)
3. RemoteTransport Candidates (describes how to connect to remote side)
These parameters are exchanged via signalling and communicated to the browser
via PeerConnection api.
The initial session description sent by the caller is called an “Offer”, & the response
from the callee is called an “Answer”.
24
PeerConnection SetUp api :
25
26
Signaling
• Mechanism to coordinate communication and to send control messages.
• Signaling methods and protocols are not specified by WebRTC but by application
developer.
• Signaling is used to exchange three types of information :
• Session control messages : to initialize or close communication and report
errors.
• Network configuration : what's my computer's IP address and port?
• Media capabilities : what codecs and resolutions can be handled by my
browser and the browser it wants to communicate with?
27
• The original idea to exchange Session Description information was in the form
of Session Description Protocol (SDP) “blobs”.
• This approach had several shortcomings some of which would be difficult to
address.
• IETF is standardizing the JavaScript Session Establishment Protocol (JSEP).
• JSEP provides the interface an application needs to deal with the negotiated
local and remote session descriptions.
• The JSEP approach leaves the responsibility for driving the signaling state
machine entirely to the application.
• XMLHttpRequest works great for sending request , but receiving them isn’t as
easy.
• App Engine’s Channel API provides the server -> client message path. 28
Signaling
App Engine Channel API
• Establishing a channel.
29
App Engine Channel API
• Sending a message.
30
NAT Traversal
• Suffice to say that the STUN protocol and its extension TURN are
used by the ICE framework to enable RTCPeerConnection to cope
with NAT traversal.
• Initially, ICE tries to connect peers directly, with the lowest
possible latency, via UDP. In this process, STUN servers have a
single task: to enable a peer behind a NAT to find out its public
address and port.
31
32
NAT Traversal
• If UDP fails, ICE tries TCP: first HTTP, then HTTPS.
• If direct connection fails—in particular, because of enterprise NAT traversal and
firewalls—ICE uses an intermediary (relay) TURN server.
• In other words, ICE will first use STUN with UDP to directly connect peers and, if that
fails, will fall back to a TURN relay server.
• The expression 'finding candidates' refers to the process of finding network
interfaces and ports.
33
NAT Traversal
34
NAT Traversal
RTCDataChannel
• As well as audio and video, WebRTC supports real-time communication for
other types of data.
• The RTCDataChannel API will enable peer-to-peer exchange of arbitrary data,
with low latency and high throughput.
• The API has several features to make the most of RTCPeerConnection and
enable powerful and flexible peer-to-peer communication.
35
• Stream Control Transmission Protocol (SCTP) encapsulated in DTLS is used to
handle DataChannel Data.
• DataChannel API is bidirectional, which means that each DataChannel bundles
an incoming and an outgoing SCTP stream.
• Encapsulating "SCTP over DTLS over ICE over UDP" provides a NAT traversal
solution together with confidentiality, source authentication, and integrity-
protected transfers.
36
RTCDataChannel
Security
There are several ways a real-time communication application or plugin might compromise
security. For example:
• Unencrypted media or data might be intercepted en route between browsers, or
between a browser and a server.
• An application might record and distribute video or audio without the user knowing.
• Malware or viruses might be installed alongside an apparently innocuous plugin or
application.
37
WebRTC has several features to avoid these problems:
• WebRTC implementations use secure protocols such as DTLS and SRTP.
• Encryption is mandatory for all WebRTC components, including signaling
mechanisms.
• WebRTC is not a plugin: its components run in the browser sandbox and not in a
separate process, components do not require separate installation, and are
updated whenever the browser is updated.
• Camera and microphone access must be granted explicitly and, when the camera or
microphone are running, this is clearly shown by the user interface.
38
Security
Current Limitations
• Cloud Infrastructure – A server is required by WebRTC to complete four tasks: User
discovery, Signalling and NAT/firewall traversal.
• Native Applications – WebRTC enables real-time communication between web browsers.
It is not a software development kit that can be used in native iOS or Android
applications or in native desktop applications.
• Multiparty Conferencing – WebRTC is peer-to-peer by nature which allows WebRTC to be
extremely scalable, but it is very inefficient when setting up communications between
more than two end users.
• Recording – WebRTC does not support recording as of now.
39
Conclusion
• The APIs and standards of WebRTC can democratize and decentralize tools
for content creation and communication — for telephony, gaming, video
production, music making, news gathering and many other applications.
• WebRTC will have great impact on open web and interoperable browser
technologies including the existing enterprise solutions.
40
References
• Salvatore Loreto, Simon Pietro Romano (2012) ‘Real-Time Communications in the
Web’
- IEEE paper October, 2012
• IETF.org
• WebRTC book by Alan B. Johnston and Daniel C. Burnett : webrtcbook.com .
• Video of Justin Uberti's WebRTC session at Google I/O, 27 June 2012.
• webrtc.org
• Google Developers Google Talk documentation, which gives more information
about NAT traversal, STUN, relay servers and candidate gathering.
• WebPlatform.org
(http://docs.webplatform.org/wiki/concepts/internet_and_web/webrtc) 41
42
43

Contenu connexe

Tendances

Tendances (20)

Asp.net.
Asp.net.Asp.net.
Asp.net.
 
OpenShift Introduction
OpenShift IntroductionOpenShift Introduction
OpenShift Introduction
 
How To be a Backend developer
How To be a Backend developer    How To be a Backend developer
How To be a Backend developer
 
Introduction to APIs (Application Programming Interface)
Introduction to APIs (Application Programming Interface) Introduction to APIs (Application Programming Interface)
Introduction to APIs (Application Programming Interface)
 
Windows internals Essentials
Windows internals EssentialsWindows internals Essentials
Windows internals Essentials
 
Lecture 7: Server side programming
Lecture 7: Server side programmingLecture 7: Server side programming
Lecture 7: Server side programming
 
Asp Architecture
Asp ArchitectureAsp Architecture
Asp Architecture
 
Cloud Native In-Depth
Cloud Native In-DepthCloud Native In-Depth
Cloud Native In-Depth
 
From Zero to Docker
From Zero to DockerFrom Zero to Docker
From Zero to Docker
 
Introduction to microservices
Introduction to microservicesIntroduction to microservices
Introduction to microservices
 
Lambdaless and AWS CDK
Lambdaless and AWS CDKLambdaless and AWS CDK
Lambdaless and AWS CDK
 
Docker & kubernetes
Docker & kubernetesDocker & kubernetes
Docker & kubernetes
 
Introduction to Docker
Introduction to DockerIntroduction to Docker
Introduction to Docker
 
Api application programming interface
Api application programming interfaceApi application programming interface
Api application programming interface
 
Microservices architecture
Microservices architectureMicroservices architecture
Microservices architecture
 
CI/CD with Openshift and Jenkins
CI/CD with Openshift and JenkinsCI/CD with Openshift and Jenkins
CI/CD with Openshift and Jenkins
 
Introducción a microservicios
Introducción a microserviciosIntroducción a microservicios
Introducción a microservicios
 
Docker 101: Introduction to Docker
Docker 101: Introduction to DockerDocker 101: Introduction to Docker
Docker 101: Introduction to Docker
 
Introduction to EJB
Introduction to EJBIntroduction to EJB
Introduction to EJB
 
WebAssembly WASM Introduction Presentation
WebAssembly WASM Introduction PresentationWebAssembly WASM Introduction Presentation
WebAssembly WASM Introduction Presentation
 

En vedette

WebRTC Audio Codec: Opus and processing requirements
WebRTC Audio Codec: Opus and processing requirementsWebRTC Audio Codec: Opus and processing requirements
WebRTC Audio Codec: Opus and processing requirementsTsahi Levent-levi
 
Introduction to WebRTC
Introduction to WebRTCIntroduction to WebRTC
Introduction to WebRTCPatrick Cason
 
Document clustering for forensic analysis
Document clustering for forensic analysisDocument clustering for forensic analysis
Document clustering for forensic analysissrinivasa teja
 
Data Mining: Mining stream time series and sequence data
Data Mining: Mining stream time series and sequence dataData Mining: Mining stream time series and sequence data
Data Mining: Mining stream time series and sequence dataDataminingTools Inc
 
Web Real-time Communications
Web Real-time CommunicationsWeb Real-time Communications
Web Real-time CommunicationsAlexei Skachykhin
 

En vedette (8)

WebRTC Audio Codec: Opus and processing requirements
WebRTC Audio Codec: Opus and processing requirementsWebRTC Audio Codec: Opus and processing requirements
WebRTC Audio Codec: Opus and processing requirements
 
Introduction to WebRTC
Introduction to WebRTCIntroduction to WebRTC
Introduction to WebRTC
 
WebRTC
WebRTCWebRTC
WebRTC
 
clickstream analysis
 clickstream analysis clickstream analysis
clickstream analysis
 
18 Data Streams
18 Data Streams18 Data Streams
18 Data Streams
 
Document clustering for forensic analysis
Document clustering for forensic analysisDocument clustering for forensic analysis
Document clustering for forensic analysis
 
Data Mining: Mining stream time series and sequence data
Data Mining: Mining stream time series and sequence dataData Mining: Mining stream time series and sequence data
Data Mining: Mining stream time series and sequence data
 
Web Real-time Communications
Web Real-time CommunicationsWeb Real-time Communications
Web Real-time Communications
 

Similaire à WebRTC Seminar Report

Architecting Low Latency Applications Alberto Gonzalez
Architecting Low Latency Applications Alberto GonzalezArchitecting Low Latency Applications Alberto Gonzalez
Architecting Low Latency Applications Alberto GonzalezAlberto González Trastoy
 
WebRTC overview
WebRTC overviewWebRTC overview
WebRTC overviewRouyun Pan
 
WebRTC. Yet Another Overview, for IT Technicians.
WebRTC. Yet Another Overview, for IT Technicians.WebRTC. Yet Another Overview, for IT Technicians.
WebRTC. Yet Another Overview, for IT Technicians.Vladimir Beloborodov
 
[Wroclaw #4] WebRTC & security: 101
[Wroclaw #4] WebRTC & security: 101[Wroclaw #4] WebRTC & security: 101
[Wroclaw #4] WebRTC & security: 101OWASP
 
What is WebRTC and How does it work?
What is WebRTC and How does it work?What is WebRTC and How does it work?
What is WebRTC and How does it work?SandipPatel533958
 
minor-project-1.ppt
minor-project-1.pptminor-project-1.ppt
minor-project-1.pptthinkonce1
 
WebRTC ... GWT & in-browser computation
WebRTC ... GWT & in-browser computationWebRTC ... GWT & in-browser computation
WebRTC ... GWT & in-browser computationJooinK
 
WebRTC - Bridging Web and SIP Worlds
WebRTC - Bridging Web and SIP WorldsWebRTC - Bridging Web and SIP Worlds
WebRTC - Bridging Web and SIP WorldsIMTC
 
WebRTC Webinar & Q&A - W3C WebRTC JS API Test Platform & Updates from W3C Lis...
WebRTC Webinar & Q&A - W3C WebRTC JS API Test Platform & Updates from W3C Lis...WebRTC Webinar & Q&A - W3C WebRTC JS API Test Platform & Updates from W3C Lis...
WebRTC Webinar & Q&A - W3C WebRTC JS API Test Platform & Updates from W3C Lis...Amir Zmora
 
Getting Started with WebRTC
Getting Started with WebRTCGetting Started with WebRTC
Getting Started with WebRTCChad Hart
 

Similaire à WebRTC Seminar Report (20)

WebRTC
WebRTCWebRTC
WebRTC
 
WebRTC presentation
WebRTC presentationWebRTC presentation
WebRTC presentation
 
Architecting Low Latency Applications Alberto Gonzalez
Architecting Low Latency Applications Alberto GonzalezArchitecting Low Latency Applications Alberto Gonzalez
Architecting Low Latency Applications Alberto Gonzalez
 
WebRCT
WebRCTWebRCT
WebRCT
 
WebRTC in action
WebRTC in actionWebRTC in action
WebRTC in action
 
WebRTC overview
WebRTC overviewWebRTC overview
WebRTC overview
 
WebRTC. Yet Another Overview, for IT Technicians.
WebRTC. Yet Another Overview, for IT Technicians.WebRTC. Yet Another Overview, for IT Technicians.
WebRTC. Yet Another Overview, for IT Technicians.
 
[Wroclaw #4] WebRTC & security: 101
[Wroclaw #4] WebRTC & security: 101[Wroclaw #4] WebRTC & security: 101
[Wroclaw #4] WebRTC & security: 101
 
WebRTC DataChannels demystified
WebRTC DataChannels demystifiedWebRTC DataChannels demystified
WebRTC DataChannels demystified
 
APIs at the Edge
APIs at the EdgeAPIs at the Edge
APIs at the Edge
 
DevCon 5 (July 2013) - WebSockets
DevCon 5 (July 2013) - WebSocketsDevCon 5 (July 2013) - WebSockets
DevCon 5 (July 2013) - WebSockets
 
DevCon5 (July 2014) - Intro to WebRTC
DevCon5 (July 2014) - Intro to WebRTCDevCon5 (July 2014) - Intro to WebRTC
DevCon5 (July 2014) - Intro to WebRTC
 
What is WebRTC and How does it work?
What is WebRTC and How does it work?What is WebRTC and How does it work?
What is WebRTC and How does it work?
 
minor-project-1.ppt
minor-project-1.pptminor-project-1.ppt
minor-project-1.ppt
 
WebRTC ... GWT & in-browser computation
WebRTC ... GWT & in-browser computationWebRTC ... GWT & in-browser computation
WebRTC ... GWT & in-browser computation
 
WebRTC - Bridging Web and SIP Worlds
WebRTC - Bridging Web and SIP WorldsWebRTC - Bridging Web and SIP Worlds
WebRTC - Bridging Web and SIP Worlds
 
WebRTC Webinar & Q&A - W3C WebRTC JS API Test Platform & Updates from W3C Lis...
WebRTC Webinar & Q&A - W3C WebRTC JS API Test Platform & Updates from W3C Lis...WebRTC Webinar & Q&A - W3C WebRTC JS API Test Platform & Updates from W3C Lis...
WebRTC Webinar & Q&A - W3C WebRTC JS API Test Platform & Updates from W3C Lis...
 
Webrtc in Real world
Webrtc in Real world Webrtc in Real world
Webrtc in Real world
 
Getting Started with WebRTC
Getting Started with WebRTCGetting Started with WebRTC
Getting Started with WebRTC
 
Introduction to SignalR
Introduction to SignalRIntroduction to SignalR
Introduction to SignalR
 

Dernier

Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 

Dernier (20)

Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 

WebRTC Seminar Report

  • 1. 1 A real-time communication between the browsers. Presented by, B . SrinivasaTeja, 11G25A0501.
  • 2. What’s WebRTC? “ WebRTC is a new front in the long war for an open and unencumbered web. — Brendan Eich, inventor of JavaScript 2
  • 3. • Web Real-Time Communication (WebRTC) is an upcoming standard that aims to enable real-time communication among Web browsers in a peer-to-peer fashion. • WebRTC project (opensource) aims to allow browsers to natively support interactive peer to peer communications and real time data collaboration. • Provide state of art audio/video communication stack in your browser. What’s WebRTC? 3
  • 4. Earlier Efforts • Many web services already use RTC, but need downloads, native apps or plugins. These includes Skype, Facebook (uses Skype) and Google Hangouts (uses Google Talk plugin). • Downloading, installing and updating plugins can be complex, error prone and annoying. • Plugins can be difficult to deploy, debug, troubleshoot, test and maintain—and may require licensing and integration with complex, expensive technology. 4
  • 5. What does it change? • No licenses or other fees. • Integration via simple, standardized Web APIs. • No Proprietary plugins. • No Security issues. • No downloads, no installation. • Just surf to the right address! 5
  • 6. Aims of WebRTC • State of art audio/video media communication stack in your browser. • Seamless person-to-person communication. • Specification to achieve inter-operability among Web browsers. • To create a common platform for real-time communication- so that your PC, your Phone, your TV can all communicate. • Low cost and highly efficient communication solution to enterprises. 6
  • 7. WebRTC Support : • WebRTC coming to almost all desktop web browsers by EOY -2012. 1. Chrome 21 2. Opera 12 3. Firefox 17 4. IE (via Chrome Frame). • Mobile browser support also will follow. • Native C++ versions ofWebRTC stack also available. 7
  • 9. • At startup, browsers do not know each other. • JavaScript mediates the setup process through server. • Media flows through the shortest possible path for latency. Architecture 9
  • 10. Key Features : • Media Streams :- access to the users camera and mic. • Peer Connection :- easy audio/video calls. • Data Channels :- P2P application data transfer. 10
  • 11. 11 WebRTC API Stack View DataChannel API PeerConnection API WebRTC APP DataChannel API PeerConnection API WebRTC APPDTLS SRTP/SCTP ICE UDP
  • 12. Media Streams : • Represents a media source that is containing 1 or more synchronized media stream tracks. • Media stream can be converted to an object URL, and passed to </video> element. • Use the getUserMedia api to get a media stream for the webcam/mic. http://webcamtoy.com/app/ --- Uses Canvas andWebGL. http://bouncyballs.org/ --- Uses Canvas andWebGL. http://neave.com/tic-tac-toe/ -- Uses Canvas. 12
  • 14. getUserMedia • A MediaStream is an abstract representation of an actual data stream of audio or video. • Serves as a handle for managing actions on the media stream. • A MediaStream can be extended to represent a stream that either comes from (remote stream) or is sent to (local stream) a remote node. • A LocalMediaStream represents a media stream from a local media-capture device (such as a webcam or microphone). 14
  • 15. 15 getUserMedia • The MediaStream represents synchronized streams of media. For example, a stream taken from camera and microphone input has synchronized video and audio tracks. • The getUserMedia() method takes three parameters: • A constraints object. • A success callback which, if called, is passed a LocalMediaStream. • A failure callback which, if called, is passed an error object. • In Chrome, the URL.createObjectURL () method converts a LocalMediaStream to a Blob URL which can be set as the src of a video element.
  • 16. <video id="sourcevid" autoplay></video> <script> var video = document.getElementById('sourcevid'); navigator.getUserMedia('video', success, error); function success(stream) { video.src = window.URL.createObjectURL(stream); } </script> 16 getUserMedia
  • 17. 17
  • 18. WebRTC App. Need TO • Get streaming audio, video or other data. • Get network information such as IP address and port, and exchange this with other WebRTC clients (known as peers). • Coordinate signaling communication to report errors and initiate or close sessions. • Exchange information about media and client capability, such as resolution and codecs. 18
  • 19. RTCPeerConnection • API for establishing Audio/Video calls (“sessions”). • Built-in :- 1. Peer-to-Peer 2. Codec control 3. Encryption 4. Bandwidth Management. 5 . C o m m u n i c a t i o n s a r e c o o r d i n a t e d v i a a s i g n a l i n g c h a n n e l p r o v i d e d b y s c r i p t i n g c o d e i n t h e p a g e v i a t h e W e b s e r v e r — f o r i n s t a n c e , u s i n g X M L H t t p R e q u e s t o r W e b S o c k e t . 19
  • 20. In the real world, WebRTC needs servers, so the following can happen: • Users discover each other and exchange 'real world' details such as names. • WebRTC client applications (peers) exchange network information. • Peers exchange data about media such as video format and resolution. • WebRTC client applications traverse NAT gateways and firewalls. 20 RTCPeerConnection
  • 23. App Engine Example : 23 https://apprtc.appspot.com
  • 24. Setting Up a Session : • To start a session a client needs – 1. Local Session Description (describes the configuration of a local side) 2. Remote Session Description (describes the configuration of remote side) 3. RemoteTransport Candidates (describes how to connect to remote side) These parameters are exchanged via signalling and communicated to the browser via PeerConnection api. The initial session description sent by the caller is called an “Offer”, & the response from the callee is called an “Answer”. 24
  • 26. 26
  • 27. Signaling • Mechanism to coordinate communication and to send control messages. • Signaling methods and protocols are not specified by WebRTC but by application developer. • Signaling is used to exchange three types of information : • Session control messages : to initialize or close communication and report errors. • Network configuration : what's my computer's IP address and port? • Media capabilities : what codecs and resolutions can be handled by my browser and the browser it wants to communicate with? 27
  • 28. • The original idea to exchange Session Description information was in the form of Session Description Protocol (SDP) “blobs”. • This approach had several shortcomings some of which would be difficult to address. • IETF is standardizing the JavaScript Session Establishment Protocol (JSEP). • JSEP provides the interface an application needs to deal with the negotiated local and remote session descriptions. • The JSEP approach leaves the responsibility for driving the signaling state machine entirely to the application. • XMLHttpRequest works great for sending request , but receiving them isn’t as easy. • App Engine’s Channel API provides the server -> client message path. 28 Signaling
  • 29. App Engine Channel API • Establishing a channel. 29
  • 30. App Engine Channel API • Sending a message. 30
  • 31. NAT Traversal • Suffice to say that the STUN protocol and its extension TURN are used by the ICE framework to enable RTCPeerConnection to cope with NAT traversal. • Initially, ICE tries to connect peers directly, with the lowest possible latency, via UDP. In this process, STUN servers have a single task: to enable a peer behind a NAT to find out its public address and port. 31
  • 33. • If UDP fails, ICE tries TCP: first HTTP, then HTTPS. • If direct connection fails—in particular, because of enterprise NAT traversal and firewalls—ICE uses an intermediary (relay) TURN server. • In other words, ICE will first use STUN with UDP to directly connect peers and, if that fails, will fall back to a TURN relay server. • The expression 'finding candidates' refers to the process of finding network interfaces and ports. 33 NAT Traversal
  • 35. RTCDataChannel • As well as audio and video, WebRTC supports real-time communication for other types of data. • The RTCDataChannel API will enable peer-to-peer exchange of arbitrary data, with low latency and high throughput. • The API has several features to make the most of RTCPeerConnection and enable powerful and flexible peer-to-peer communication. 35
  • 36. • Stream Control Transmission Protocol (SCTP) encapsulated in DTLS is used to handle DataChannel Data. • DataChannel API is bidirectional, which means that each DataChannel bundles an incoming and an outgoing SCTP stream. • Encapsulating "SCTP over DTLS over ICE over UDP" provides a NAT traversal solution together with confidentiality, source authentication, and integrity- protected transfers. 36 RTCDataChannel
  • 37. Security There are several ways a real-time communication application or plugin might compromise security. For example: • Unencrypted media or data might be intercepted en route between browsers, or between a browser and a server. • An application might record and distribute video or audio without the user knowing. • Malware or viruses might be installed alongside an apparently innocuous plugin or application. 37
  • 38. WebRTC has several features to avoid these problems: • WebRTC implementations use secure protocols such as DTLS and SRTP. • Encryption is mandatory for all WebRTC components, including signaling mechanisms. • WebRTC is not a plugin: its components run in the browser sandbox and not in a separate process, components do not require separate installation, and are updated whenever the browser is updated. • Camera and microphone access must be granted explicitly and, when the camera or microphone are running, this is clearly shown by the user interface. 38 Security
  • 39. Current Limitations • Cloud Infrastructure – A server is required by WebRTC to complete four tasks: User discovery, Signalling and NAT/firewall traversal. • Native Applications – WebRTC enables real-time communication between web browsers. It is not a software development kit that can be used in native iOS or Android applications or in native desktop applications. • Multiparty Conferencing – WebRTC is peer-to-peer by nature which allows WebRTC to be extremely scalable, but it is very inefficient when setting up communications between more than two end users. • Recording – WebRTC does not support recording as of now. 39
  • 40. Conclusion • The APIs and standards of WebRTC can democratize and decentralize tools for content creation and communication — for telephony, gaming, video production, music making, news gathering and many other applications. • WebRTC will have great impact on open web and interoperable browser technologies including the existing enterprise solutions. 40
  • 41. References • Salvatore Loreto, Simon Pietro Romano (2012) ‘Real-Time Communications in the Web’ - IEEE paper October, 2012 • IETF.org • WebRTC book by Alan B. Johnston and Daniel C. Burnett : webrtcbook.com . • Video of Justin Uberti's WebRTC session at Google I/O, 27 June 2012. • webrtc.org • Google Developers Google Talk documentation, which gives more information about NAT traversal, STUN, relay servers and candidate gathering. • WebPlatform.org (http://docs.webplatform.org/wiki/concepts/internet_and_web/webrtc) 41
  • 42. 42
  • 43. 43