On Github mnmtanish / WebRTC-Demo
Let me know if you can't read this text
Are you sure you can't read above text?Browsers going to stop plugins soon
Critical security risks with plugins
To enable rich, high quality, RTC applications to be developed in the browser via simple JavaScript APIs and HTML5- WebRTC Mission
Hardware acceleration
This changes the web as we know it
Instant Messenger video chat
Video chat for Github users
Expert consulting through video
Truly simple video chat and screen sharing for groups
Live photo sharing
Easy and quick audio conferencing
Video conferencing platform
1-click video chat
Make real phone calls from browser
Instant and direct file sharing
A webserver inside a web browser
Browser as a BitTorrent client
Crowd powered anonymouse browsing
P2P File Delivery, Video Streaming, ....
Augmented Reality for the web
It's easy even with Vanilla.JS
Some libraries exist which makes this much easier
Or complete hosted services
var connection = new RTCMultiConnection(); var container = document.querySelector('#container'); var triggerButton = document.querySelector('#startButton'); connection.session = { audio: true, video: true }; connection.onstream = function(e) { container.appendChild(e.mediaElement); }; connection.connect(); triggerButton.onclick = function() { connection.open(); };