fix smallest resolution

This commit is contained in:
Manuel Araoz 2014-05-20 10:50:50 -03:00
parent 780a43d421
commit b73d6e791a
1 changed files with 11 additions and 3 deletions

View File

@ -13,10 +13,18 @@ var Video = function() {
Video.prototype.setOwnPeer = function(peer, wallet, cb) {
var self = this;
navigator.getUserMedia({
var VWIDTH = 320;
var VHEIGHT = 320;
var constraints = {
audio: true,
video: true
}, function(stream) {
video: {
mandatory: {
maxWidth: VWIDTH,
maxHeight: VHEIGHT,
}
}
};
navigator.getUserMedia(constraints, function(stream) {
// This is called when user accepts using webcam
self.localStream = stream;
var online = wallet.getOnlinePeerIDs();