Make getUserMedia request manually
var hints = { audio: true, video: { width: 1920, height: 1080, frameRate: 30 } }; connection.invokeGetUserMedia(hints, function(stream) { video.srcObject = stream; }, connection.session);