Skip to content

Latest commit

 

History

History
 
 

Pluginfree-Screen-Sharing

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

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.

Enable screen capture support in getUserMedia()

  1. Open chrome://flags in the latest chrome (canary/beta).
  2. Scroll to the bottom of the page.
  3. 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);

====

Browser Support

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

====

License

WebRTC plugin free screen sharing experiment is released under MIT licence . Copyright (c) 2013 Muaz Khan.