WebRTC plugin free screen sharing / Demo
No tabCapture APIs
, No chrome extension, No firefox add-ons. Share the entire screen direclty from within a browser.
- Open
chrome://flags
in the latest chrome (canary/beta). - Scroll to the bottom of the page.
- Enable flag
Enable screen capture support in getUserMedia()
That flag allows web pages to request access to the screen contents via the getUserMedia() API
.
var video_constraints = {
mandatory: { chromeMediaSource: 'screen' },
optional: []
};
navigator.webkitGetUserMedia({
audio: false,
video: video_constraints
}, onstreaming, onfailure);
====
WebRTC plugin free screen sharing experiment works fine on following web-browsers:
Browser | Support |
---|---|
Firefox | Aurora |
Firefox | Nightly |
Google Chrome | Stable |
Google Chrome | Canary |
Google Chrome | Beta |
Google Chrome | Dev |
====
WebRTC plugin free screen sharing experiment is released under MIT licence . Copyright (c) 2013 Muaz Khan.