Skip to content

Commit 3273569

Browse files
committed
Screen-Capturing.js, RecordRTC.js, and RTCMultiConnection-v2.2.1.js
1 parent 1d2dd6d commit 3273569

22 files changed

+8242
-1000
lines changed

Chrome-Extensions/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,18 @@ A few chrome extensions are supporting direct p2p screen steaming; whilst others
1010
2. [desktopCapture with p2p streaming](https://chrome.google.com/webstore/detail/webrtc-desktop-sharing/nkemblooioekjnpfekmjhpgkackcajhg)
1111
3. [tabCapture with p2p streaming](https://chrome.google.com/webstore/detail/tab-capturing-sharing/pcnepejfgcmidedoimegcafiabjnodhk)
1212

13+
## [Screen-Capturing.js](https://github.com/muaz-khan/Chrome-Extensions/tree/master/Screen-Capturing.js) / [Demo](https://www.webrtc-experiment.com/Screen-Capturing/)
14+
15+
> Screen-Capturing.js can be used in any demo/project/library.
16+
> It provides simple methods to integrate "Screen-Capturing" extension
17+
> in your own applications.
18+
>
19+
> It means that you don't need to use [iframe-hack](https://github.com/muaz-khan/WebRTC-Experiment/tree/master/getScreenId.js).
20+
21+
Read more here:
22+
23+
* https://github.com/muaz-khan/Chrome-Extensions/tree/master/Screen-Capturing.js
24+
1325
## Credits
1426

1527
[Muaz Khan](https://github.com/muaz-khan):
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
# [Screen-Capturing.js](https://github.com/muaz-khan/Chrome-Extensions/tree/master/Screen-Capturing.js) / [Demo](https://www.webrtc-experiment.com/Screen-Capturing/)
2+
3+
> Screen-Capturing.js can be used in any demo/project/library.
4+
5+
> It provides simple methods to integrate "Screen-Capturing" extension
6+
7+
> in your own applications.
8+
9+
>
10+
> It means that you don't need to use [iframe-hack](https://github.com/muaz-khan/WebRTC-Experiment/tree/master/getScreenId.js).
11+
12+
## How to Install/Deploy Chrome Extension?
13+
14+
You can download chrome extension's full source-code from <a href="https://github.com/muaz-khan/Chrome-Extensions/tree/master/desktopCapture">this link</a> and then you need to modify "manifest.json" to add your domain name (DNS) and last step is simply <a href="https://github.com/muaz-khan/Chrome-Extensions/tree/master/desktopCapture#how-to-publish-yourself">make ZIP</a> which should be <a href="https://developer.chrome.com/webstore/publish">deployed to Google AppStore</a>.<br><br> Though, you always having options to make CRX file or directly link the directory in developer mode however Google AppStore is preferred option.<br><br>
15+
Then you can use <a href="https://cdn.webrtc-experiment.com/Screen-Capturing.js">this JavaScript file</a> in your own project/demo/library and enjoy fast/direct capturing of the selected content's frames.<br><br>
16+
17+
1. <a href="https://chrome.google.com/webstore/detail/screen-capturing/ajhifddimkapgcifgcodmmfdlknahffk">Google AppStore deployed extension</a>
18+
2. <a href="https://github.com/muaz-khan/Chrome-Extensions/tree/master/desktopCapture">Source code of the extension</a>
19+
3. <a href="https://github.com/muaz-khan/Chrome-Extensions/tree/master/Screen-Capturing.js">Source code of Screen-Capturing.js</a>
20+
21+
## How to use Screen-Capturing.js?
22+
23+
```javascript
24+
// cdn.webrtc-experiment.com/Screen-Capturing.js
25+
26+
// advance users can directly use "getSourceId" method
27+
getSourceId(function(sourceId) {
28+
if(sourceId != 'PermissionDeniedError') {
29+
// your code here
30+
}
31+
});
32+
33+
// otherwise, you can use a helper method
34+
getScreenConstraints(function(error, screen_constraints) {
35+
if (error) {
36+
return alert(error);
37+
}
38+
39+
navigator.getUserMedia = navigator.webkitGetUserMedia || navigator.mozGetUserMedia;
40+
navigator.getUserMedia({
41+
video: screen_constraints
42+
}, function(stream) {
43+
var video = document.querySelector('video');
44+
video.src = URL.createObjectURL(stream);
45+
video.play();
46+
}, function(error) {
47+
alert(JSON.stringify(error, null, '\t'));
48+
});
49+
});
50+
51+
// if you want to check if chrome extension is installed and enabled
52+
isChromeExtensionAvailable(function(isAvailable) {
53+
if(!isAvailable) alert('Chrome extension is either not installed or disabled.');
54+
});
55+
56+
// instead of using "isChromeExtensionAvailable", you can use
57+
// a little bit more reliable method: "getChromeExtensionStatus"
58+
getChromeExtensionStatus('your-extension-id', function(status) {
59+
if(status == 'installed-enabled') {
60+
// chrome extension is installed & enabled.
61+
}
62+
63+
if(status == 'installed-disabled') {
64+
// chrome extension is installed but disabled.
65+
}
66+
67+
if(status == 'not-installed') {
68+
// chrome extension is not installed
69+
}
70+
71+
if(status == 'not-chrome') {
72+
// using non-chrome browser
73+
}
74+
});
75+
```
76+
77+
## If I don't want to deploy to Google AppStore?
78+
79+
You can try <a href="https://github.com/muaz-khan/WebRTC-Experiment/tree/master/getScreenId.js">getScreenId.js</a> which simply uses an iframe-hack to fetch "sourceId" from "www.webrtc-experiment.com" domain. Simply link the library, and use it without any single installation!
80+
81+
## Credits
82+
83+
[Muaz Khan](https://github.com/muaz-khan):
84+
85+
1. Personal Webpage: http://www.muazkhan.com
86+
87+
3. Twitter: https://twitter.com/muazkh and https://twitter.com/WebRTCWeb
88+
4. Google+: https://plus.google.com/+WebRTC-Experiment
89+
5. Facebook: https://www.facebook.com/WebRTC
90+
91+
## License
92+
93+
[Screen-Capturing.js](https://github.com/muaz-khan/Chrome-Extensions/tree/master/Screen-Capturing.js) are released under [MIT licence](https://www.webrtc-experiment.com/licence/) . Copyright (c) [Muaz Khan](https://plus.google.com/+MuazKhan).
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
// Last time updated at Sep 23, 2014, 08:32:23
2+
3+
// Latest file can be found here: https://cdn.webrtc-experiment.com/Screen-Capturing.js
4+
5+
// Muaz Khan - www.MuazKhan.com
6+
// MIT License - www.WebRTC-Experiment.com/licence
7+
// Documentation - https://github.com/muaz-khan/Chrome-Extensions/tree/master/Screen-Capturing.js
8+
// Demo - https://www.webrtc-experiment.com/Screen-Capturing/
9+
10+
// ___________________
11+
// Screen-Capturing.js
12+
13+
// Source code: https://github.com/muaz-khan/Chrome-Extensions/tree/master/desktopCapture
14+
// Google AppStore installation path: https://chrome.google.com/webstore/detail/screen-capturing/ajhifddimkapgcifgcodmmfdlknahffk
15+
16+
// This JavaScript file is aimed to explain steps needed to integrate above chrome extension
17+
// in your own webpages
18+
19+
// Usage:
20+
// getScreenConstraints(function(screen_constraints) {
21+
// navigator.webkitGetUserMedia({ video: screen_constraints }, onSuccess, onFailure );
22+
// });
23+
24+
// First Step: Download the extension, modify "manifest.json" and publish to Google AppStore
25+
// https://github.com/muaz-khan/Chrome-Extensions/tree/master/desktopCapture#how-to-publish-yourself
26+
27+
// Second Step: Listen for postMessage handler
28+
// postMessage is used to exchange "sourceId" between chrome extension and you webpage.
29+
// though, there are tons other options as well, e.g. XHR-signaling, websockets, etc.
30+
window.addEventListener('message', function(event) {
31+
if (event.origin != window.location.origin) {
32+
return;
33+
}
34+
35+
onMessageCallback(event.data);
36+
});
37+
38+
// and the function that handles received messages
39+
40+
function onMessageCallback(data) {
41+
// "cancel" button is clicked
42+
if (data == 'PermissionDeniedError') {
43+
chromeMediaSource = 'PermissionDeniedError';
44+
if (screenCallback) return screenCallback('PermissionDeniedError');
45+
else throw new Error('PermissionDeniedError');
46+
}
47+
48+
// extension notified his presence
49+
if (data == 'rtcmulticonnection-extension-loaded') {
50+
chromeMediaSource = 'desktop';
51+
}
52+
53+
// extension shared temp sourceId
54+
if (data.sourceId && screenCallback) {
55+
screenCallback(sourceId = data.sourceId);
56+
}
57+
}
58+
59+
// global variables
60+
var chromeMediaSource = 'screen';
61+
var sourceId;
62+
var screenCallback;
63+
64+
// this method can be used to check if chrome extension is installed & enabled.
65+
function isChromeExtensionAvailable(callback) {
66+
if (!callback) return;
67+
68+
if (chromeMediaSource == 'desktop') return callback(true);
69+
70+
// ask extension if it is available
71+
window.postMessage('are-you-there', '*');
72+
73+
setTimeout(function() {
74+
if (chromeMediaSource == 'screen') {
75+
callback(false);
76+
} else callback(true);
77+
}, 2000);
78+
}
79+
80+
// this function can be used to get "source-id" from the extension
81+
function getSourceId(callback) {
82+
if (!callback) throw '"callback" parameter is mandatory.';
83+
if(sourceId) return callback(sourceId);
84+
85+
screenCallback = callback;
86+
window.postMessage('get-sourceId', '*');
87+
}
88+
89+
var isFirefox = typeof window.InstallTrigger !== 'undefined';
90+
var isOpera = !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0;
91+
var isChrome = !!window.chrome && !isOpera;
92+
93+
function getChromeExtensionStatus(extensionid, callback) {
94+
if (isFirefox) return callback('not-chrome');
95+
96+
if (arguments.length != 2) {
97+
callback = extensionid;
98+
extensionid = 'ajhifddimkapgcifgcodmmfdlknahffk'; // default extension-id
99+
}
100+
101+
var image = document.createElement('img');
102+
image.src = 'chrome-extension://' + extensionid + '/icon.png';
103+
image.onload = function() {
104+
chromeMediaSource = 'screen';
105+
window.postMessage('are-you-there', '*');
106+
setTimeout(function() {
107+
if (chromeMediaSource == 'screen') {
108+
callback(extensionid == extensionid ? 'installed-enabled' : 'installed-disabled');
109+
} else callback('installed-enabled');
110+
}, 2000);
111+
};
112+
image.onerror = function() {
113+
callback('not-installed');
114+
};
115+
}
116+
117+
// this function explains how to use above methods/objects
118+
function getScreenConstraints(callback) {
119+
var firefoxScreenConstraints = {
120+
mozMediaSource: 'window',
121+
mediaSource: 'window'
122+
};
123+
124+
if(isFirefox) return callback(null, firefoxScreenConstraints);
125+
126+
// this statement defines getUserMedia constraints
127+
// that will be used to capture content of screen
128+
var screen_constraints = {
129+
mandatory: {
130+
chromeMediaSource: chromeMediaSource,
131+
maxWidth: screen.width > 1920 ? screen.width : 1920,
132+
maxHeight: screen.height > 1080 ? screen.height : 1080
133+
},
134+
optional: []
135+
};
136+
137+
// this statement verifies chrome extension availability
138+
// if installed and available then it will invoke extension API
139+
// otherwise it will fallback to command-line based screen capturing API
140+
if (chromeMediaSource == 'desktop' && !sourceId) {
141+
getSourceId(function() {
142+
screen_constraints.mandatory.chromeMediaSourceId = sourceId;
143+
callback(sourceId == 'PermissionDeniedError' ? sourceId : null, screen_constraints);
144+
});
145+
return;
146+
}
147+
148+
// this statement sets gets 'sourceId" and sets "chromeMediaSourceId"
149+
if (chromeMediaSource == 'desktop') {
150+
screen_constraints.mandatory.chromeMediaSourceId = sourceId;
151+
}
152+
153+
// now invoking native getUserMedia API
154+
callback(null, screen_constraints);
155+
}

0 commit comments

Comments
 (0)