We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
See ad75454#diff-20e543a222fca71d2e2b99c286bbc60db44e228bb3cfc9d8a083d835140abdb0R2371
const isSharingScreen = FeatureFlags.isMultiStreamSupportEnabled() ? mid === getDesktopTrackMid() : this._isSharingScreen(); const limit = Math.floor((isSharingScreen ? HD_BITRATE : hdBitrate) / 1000);
We use here the hardcoded constant HD_BITRATE for Screenshare. Would be nice to have it config-able using config.js ie
HD_BITRATE
videoQuality: { preferredCodec: 'VP9', enforcePreferredCodec: true, maxBitratesVideo: { VP9: { low: 100000, standard: 300000, high: 750000, screenshare: 500000 } }, },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
See ad75454#diff-20e543a222fca71d2e2b99c286bbc60db44e228bb3cfc9d8a083d835140abdb0R2371
We use here the hardcoded constant
HD_BITRATE
for Screenshare. Would be nice to have it config-able using config.js ieThe text was updated successfully, but these errors were encountered: