Created
March 1, 2017 17:25
-
-
Save glaucia86/5e9a6bd2011e6f7f53f4a0003555ac17 to your computer and use it in GitHub Desktop.
Script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
navigator.getUserMedia( | |
//Opções: | |
{ | |
video: true | |
}, | |
//Callback - Sucesso: | |
function (stream){ | |
// Criará um objeto URL para o stream de video e irá | |
// iniciar como src do nosso elemento video do HTML | |
video.src = window.URL.createObjectURL(stream); | |
// E depois irá dar um play no elemento video para mostrar o stream de video para o usuário: | |
video.play(); | |
}, | |
// Callback - Erro | |
function(err){ | |
// A maioria dos erros dados aqui são: 'PermissionDenied' & 'DevicesNotFound' | |
console.error(err); | |
} | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment