Update CameraProxy.js (#284)
Remove audio flag from getUserMedia on the browser. Including audio resulted in some nasty audio feedback, and audio isn't really needed for taking pictures anyway.
This commit is contained in:
parent
ead7d5e6c2
commit
36343a8e07
@ -109,7 +109,7 @@ function capture (success, errorCallback, opts) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
if (navigator.getUserMedia) {
|
if (navigator.getUserMedia) {
|
||||||
navigator.getUserMedia({video: true, audio: true}, successCallback, errorCallback);
|
navigator.getUserMedia({video: true, audio: false}, successCallback, errorCallback);
|
||||||
} else {
|
} else {
|
||||||
alert('Browser does not support camera :(');
|
alert('Browser does not support camera :(');
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user