Hi,
We have observed that in video chat if the caller is joining from mobile phone connection the picture gets stuck probably due to the low bandwidth, kindly assist how we can avoid this scenario.. our javascript settings for both sides are as following:
conn.join({name: IpAddress}).on(ROOM_EVENT.STATE, function(room){
myRoom = room;
var constraints = {
audio: true,
video: {
minBitrate: 100,
maxBitrate: 400
}
};
var display = document.getElementById("localDisplay");
if (Browser.isSafariWebRTC()) {
Flashphoner.playFirstVideo(display, true);
}
room.publish({
display: display,
constraints: constraints,
record: false,
receiveVideo: false,
receiveAudio: false
}).on(STREAM_STATUS.FAILED, function (stream) {
//alert(stream.status());
Kindly assist...
Thanks
Arif
We have observed that in video chat if the caller is joining from mobile phone connection the picture gets stuck probably due to the low bandwidth, kindly assist how we can avoid this scenario.. our javascript settings for both sides are as following:
conn.join({name: IpAddress}).on(ROOM_EVENT.STATE, function(room){
myRoom = room;
var constraints = {
audio: true,
video: {
minBitrate: 100,
maxBitrate: 400
}
};
var display = document.getElementById("localDisplay");
if (Browser.isSafariWebRTC()) {
Flashphoner.playFirstVideo(display, true);
}
room.publish({
display: display,
constraints: constraints,
record: false,
receiveVideo: false,
receiveAudio: false
}).on(STREAM_STATUS.FAILED, function (stream) {
//alert(stream.status());
Kindly assist...
Thanks
Arif