Skip to content

Instantly share code, notes, and snippets.

View benbrittain's full-sized avatar
🐘
Focusing

Benjamin Brittain benbrittain

🐘
Focusing
View GitHub Profile
7
3
1
1
1
0
2
1
2
1
function initMedia() {
if(navigator.webkitGetUserMedia) {
navigator.webkitGetUserMedia({audio: true}, onSuccess, onFail);
} else {
alert('webRTC not available');
}
}
function onSuccess(stream) {