There was an error while loading. Please reload this page.
1 parent 287cbb5 commit 8b09b29Copy full SHA for 8b09b29
2 files changed
browser/src/App.tsx
@@ -75,7 +75,8 @@ const App = () => {
75
const stream = await navigator.mediaDevices.getUserMedia({
76
video: {
77
width: { ideal: resolution?.width || 1920 },
78
- height: { ideal: resolution?.height || 1080 }
+ height: { ideal: resolution?.height || 1080 },
79
+ frameRate: { ideal: 60 }
80
},
81
audio: true
82
});
desktop/src/renderer/src/App.tsx
@@ -72,7 +72,8 @@ const App = (): ReactElement => {
72
73
74
})
0 commit comments