webrtc-native
Advanced tools
Comparing version 0.0.23 to 0.0.24
@@ -0,0 +0,0 @@ try { |
{ | ||
"name": "webrtc-native", | ||
"version": "0.0.23", | ||
"version": "0.0.24", | ||
"description": "WebRTC for NodeJS", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/vmolsa/webrtc-native", |
@@ -0,0 +0,0 @@ [WebRTC](http://en.wikipedia.org/wiki/WebRTC) for NodeJS |
@@ -68,3 +68,3 @@ var fs = require('fs'); | ||
function checkout() { | ||
sh('git checkout remotes/branch-heads/43', { | ||
sh('git checkout branch-heads/44', { | ||
cwd: WEBRTC_SRC, | ||
@@ -92,3 +92,3 @@ env: process.env, | ||
if (!SYNC) { | ||
return checkout(); | ||
return build(); | ||
} | ||
@@ -198,2 +198,2 @@ | ||
prep(); | ||
prep(); |
require('./multiconnect'); | ||
require('./bwtest').tape(); |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ var WEBRTC = require('../'); |
@@ -0,0 +0,0 @@ var WebRTC = require('../'); |
@@ -0,0 +0,0 @@ var WEBRTC = require('../'); |
@@ -12,4 +12,32 @@ var WEBRTC = require('../'); | ||
var constraints = { | ||
audio: true, | ||
video: true, | ||
audio: { | ||
optional: [ | ||
{ | ||
googEchoCancellation: true, | ||
googEchoCancellation2: true, | ||
googDAEchoCancellation: true, | ||
googAutoGainControl: true, | ||
googAutoGainControl2: true, | ||
googNoiseSuppression: true, | ||
googNoiseSuppression2: true, | ||
googHighpassFilter: true, | ||
googTypingNoiseDetection: true, | ||
googAudioMirroring: true, | ||
}, | ||
], | ||
}, | ||
video: { | ||
optional: [ | ||
{ | ||
minAspectRatio: 1.333, | ||
maxAspectRatio: 1.778, | ||
maxWidth: 1920, | ||
minWidth: 320, | ||
maxHeight: 1080, | ||
minHeight: 180, | ||
maxFrameRate: 60, | ||
minFrameRate: 30, | ||
}, | ||
], | ||
}, | ||
optional: [ | ||
@@ -134,5 +162,2 @@ { | ||
WEBRTC.getUserMedia({ | ||
audio: true, | ||
video: true, | ||
}, onSuccess, onError); | ||
WEBRTC.getUserMedia(constraints, onSuccess, onError); |
@@ -0,0 +0,0 @@ 'use strict'; |
@@ -0,0 +0,0 @@ var WEBRTC = require('../'); |
@@ -0,0 +0,0 @@ var WEBRTC = require('../'); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
250568
46
1217