mirror of
https://github.com/jech/galene.git
synced 2024-11-09 18:25:58 +01:00
Constrain video aspect ratio rather than resolution.
This commit is contained in:
parent
ff28e33d74
commit
2ad6fc5b6e
1 changed files with 3 additions and 2 deletions
|
@ -1391,7 +1391,9 @@ function replaceCameraStream() {
|
||||||
async function addLocalMedia(localId) {
|
async function addLocalMedia(localId) {
|
||||||
let settings = getSettings();
|
let settings = getSettings();
|
||||||
|
|
||||||
|
/** @type{boolean|MediaTrackConstraints} */
|
||||||
let audio = settings.audio ? {deviceId: settings.audio} : false;
|
let audio = settings.audio ? {deviceId: settings.audio} : false;
|
||||||
|
/** @type{boolean|MediaTrackConstraints} */
|
||||||
let video = settings.video ? {deviceId: settings.video} : false;
|
let video = settings.video ? {deviceId: settings.video} : false;
|
||||||
|
|
||||||
if(video) {
|
if(video) {
|
||||||
|
@ -1403,8 +1405,7 @@ async function addLocalMedia(localId) {
|
||||||
video.width = { min: 640, ideal: 1920 };
|
video.width = { min: 640, ideal: 1920 };
|
||||||
video.height = { min: 400, ideal: 1080 };
|
video.height = { min: 400, ideal: 1080 };
|
||||||
} else {
|
} else {
|
||||||
video.width = { ideal: 640 };
|
video.aspectRatio = { ideal: 4/3 };
|
||||||
video.height = { ideal: 400 };
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue