renamed
This commit is contained in:
13
src/Yavsc/wwwroot/js/audiovideoinput.js
Normal file
13
src/Yavsc/wwwroot/js/audiovideoinput.js
Normal file
@ -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)
|
||||
});
|
Reference in New Issue
Block a user