0
我已經嘗試了本教程的大小,但是當我拿起QVGA或其他,沒有任何反應....分辨率保持不變#ApiRTC我不能改變攝像頭的視頻
爲什麼我不能修復它???
這是源代碼
所以我可以看到這個功能:
//RESOLUTION
$("#QVGA").click(function() {
console.log("QVGA");
$("#resolution").html('QVGA');
var constraint = {
'audio':{'mandatory': {}, 'optional': []},
'video': {'mandatory': {maxWidth: 320, maxHeight: 240}, 'optional': []}};
webRTCClient.setGetUserMediaConfig(constraint);
});
$("#VGA").click(function() {
console.log("VGA");
$("#resolution").html('VGA');
var constraint = {
'audio':{'mandatory': {}, 'optional': []},
'video': {'mandatory': {maxWidth: 640, maxHeight: 480}, 'optional': []}};
webRTCClient.setGetUserMediaConfig(constraint);
});
$("#XGA").click(function() {
console.log("XGA");
$("#resolution").html('XGA');
var constraint = {
'audio':{'mandatory': {}, 'optional': []},
'video': {'mandatory': {maxWidth: 1024, maxHeight: 768}, 'optional': []}};
webRTCClient.setGetUserMediaConfig(constraint);
});
$("#SXGA").click(function() {
console.log("SXGA");
$("#resolution").html('SXGA');
var constraint = {
'audio':{'mandatory': {}, 'optional': []},
'video': {'mandatory': {maxWidth: 1280, maxHeight: 720}, 'optional': []}};
webRTCClient.setGetUserMediaConfig(constraint);
});
//RESOLUTION
什麼問題?