forked from getify/h5ive-DEPRECATED
-
Notifications
You must be signed in to change notification settings - Fork 0
/
usermedia.h5ive.js
91 lines (77 loc) · 2.18 KB
/
usermedia.h5ive.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*! usermedia.h5ive.js | (c) Kyle Simpson | MIT License: http://getify.mit-license.org */
(function(h5){
if (!h5) throw new Error("userMedia.h5ive: core.h5ive required.");
var gUM = (navigator.getUserMedia || navigator.webkitGetUserMedia || navigator.mozGetUserMedia || navigator.msGetUserMedia);
h5.userMedia = function(opts,successCB,failedCB) {
var publicAPI, success_cb, failed_cb, raw_stream,
success_args = [], failed_args = [], opts_str
;
function stream(cb) {
if (!success_cb) success_cb = cb;
else if (success_cb === true) cb.apply(h5.userMedia,success_args);
else throw new Error("Success callback already defined.");
return publicAPI;
}
function failed(cb) {
if (!failed_cb) failed_cb = cb;
else if (success_cb === true) cb.apply(h5.userMedia,failed_args);
else throw new Error("Failed callback already defined.");
return publicAPI;
}
function handleSuccess() {
var args = [].slice.call(arguments);
raw_stream = publicAPI.raw_stream = args[0];
if (window.webkitURL) {
args[0] = webkitURL.createObjectURL(args[0]);
}
if (success_cb && typeof success_cb === "function") {
success_cb.apply(h5.userMedia,args);
}
else {
success_cb = true;
success_args = args.slice();
}
}
function handleFailure() {
if (failed_cb && typeof failed_cb === "function") {
failed_cb.apply(h5.userMedia,arguments);
}
else {
failed_cb = true;
failed_args = [].slice.call(arguments);
}
}
function abort() {
try { stream.stop(); } catch (err) { }
stream = publicAPI.raw_stream = null;
return publicAPI;
}
success_cb = successCB;
failed_cb = failedCB;
if (gUM) {
for (idx in opts) { if (opts.hasOwnProperty(idx)) {
opts_str += (opts_str != "" ? "," : "") + idx;
}}
try {
gUM.call(navigator,opts,handleSuccess,handleFailure);
}
catch (err) {
try {
gUM.call(navigator,opts_str,handleSuccess,handleFailure);
}
catch (err2) {
handleFailure("'getUserMedia' failed.");
}
}
}
else {
handleFailure("'getUserMedia' is not available.");
}
publicAPI = {
stream: stream,
failed: failed,
abort: abort
};
return publicAPI;
};
})(this.h5);