From 895c7eb327c8ac4ea88fe1ca5f24321b36256b92 Mon Sep 17 00:00:00 2001 From: Jaya Allamsetty Date: Thu, 22 Apr 2021 17:26:15 -0400 Subject: [PATCH] fix(RTC): Specify default width of 1280px for video. Fixes https://github.com/jitsi/lib-jitsi-meet/issues/1571. --- modules/RTC/RTCUtils.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/modules/RTC/RTCUtils.js b/modules/RTC/RTCUtils.js index f4d6f3c50f..d341bf0a2a 100644 --- a/modules/RTC/RTCUtils.js +++ b/modules/RTC/RTCUtils.js @@ -62,7 +62,12 @@ const DEFAULT_CONSTRAINTS = { height: { ideal: 720, max: 720, - min: 240 + min: 180 + }, + width: { + ideal: 1280, + max: 1280, + min: 320 } } };