Hello, compared to zoom, in jitsi’s virtual background, human hair was often blurred.
Is there any way I can adjust the sharpness by modifying the source code of jitsi?
You can tinker with these values: jitsi-meet/JitsiStreamBackgroundEffect.js at e1ac000cd1f15642218e80ded98ee19188cf2b17 · jitsi/jitsi-meet · GitHub
1 Like
I tried adjusting that value.
- When the value is lowered, a stair effect occurred.
- When the value is increased, a blurry phenomenon has occurred.
-
this._outputCanvasCtx.filter = ‘blur(0px)’
-
this._outputCanvasCtx.filter = ‘blur(100px)’
-
this._outputCanvasCtx.filter = ‘blur(4px)’
We use a value of 4 when a background is selected, and 8 when the whole background needs to be blurred.
1 Like