vnext
Paul Schneider 5 years ago
parent 286751b557
commit 454d32bdaa
1 changed files with 13 additions and 0 deletions

@ -0,0 +1,13 @@
var constraints = { audio: true, video: false }
navigator.mediaDevices.getUserMedia(constraints)
.then(function(stream) {
/* use the stream */
console.log("got stream!");
console.log(stream)
})
.catch(function(err) {
/* handle the error */
console.log(err)
});
Loading…