From 17a49f2415f690d96ebdb120433fae07566a0d39 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Sat, 25 Feb 2023 19:05:01 +0100 Subject: [PATCH] [mirotalksfu] - improve get screen constraints --- public/js/RoomClient.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/public/js/RoomClient.js b/public/js/RoomClient.js index 728f6701..af4d8c4f 100644 --- a/public/js/RoomClient.js +++ b/public/js/RoomClient.js @@ -1070,10 +1070,9 @@ class RoomClient { return { audio: true, video: { - frameRate: { - ideal: 15, - max: 30, - }, + width: { max: 1920 }, + height: { max: 1080 }, + frameRate: { max: 30 }, }, }; }