The video in the browser is a bit blurry. How can I improve the resolution? #296
Unanswered
lovetingyuan
asked this question in
Q&A
Replies: 1 comment 1 reply
-
|
Root Cause: Deskreen's screen capture defaults to 50% of source resolution for minimum size multiplier, causing blurry output. Files:
Fixes: Option 1: Code Change const stream = await getDesktopSourceStreamBySourceID(
sourceID,
peerConnection.sourceDisplaySize?.width,
peerConnection.sourceDisplaySize?.height,
1.0, // ← Change from 0.5 to 1.0 for full resolution
1,
);Option 2: User Control Option 3: Reduce Frame Rate minFrameRate = 30, // Reduce from 60 to 30
maxFrameRate = 30,This frees up bandwidth for higher resolution. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
The second screen rendered by the browser is too blurry. What can I do to make the display clearer?
Beta Was this translation helpful? Give feedback.
All reactions