diff --git a/browser/src/App.tsx b/browser/src/App.tsx index ca4ce05..cab0338 100644 --- a/browser/src/App.tsx +++ b/browser/src/App.tsx @@ -75,7 +75,8 @@ const App = () => { const stream = await navigator.mediaDevices.getUserMedia({ video: { width: { ideal: resolution?.width || 1920 }, - height: { ideal: resolution?.height || 1080 } + height: { ideal: resolution?.height || 1080 }, + frameRate: { ideal: 60 } }, audio: true }); diff --git a/desktop/src/renderer/src/App.tsx b/desktop/src/renderer/src/App.tsx index 072cca8..259f27a 100644 --- a/desktop/src/renderer/src/App.tsx +++ b/desktop/src/renderer/src/App.tsx @@ -72,7 +72,8 @@ const App = (): ReactElement => { const stream = await navigator.mediaDevices.getUserMedia({ video: { width: { ideal: resolution?.width || 1920 }, - height: { ideal: resolution?.height || 1080 } + height: { ideal: resolution?.height || 1080 }, + frameRate: { ideal: 60 } }, audio: true })