How to improve screen share quality in Jitsi Meet

Improve Jitsi Meet screen share quality using below step

Edit your config.js file. In docker, you can use the below command

nano ~/.jitsi-meet-cfg/web/config.js

In normal Jitsi Meet setup, use the below command change your-domain.com with actual domain name

nano /etc/jitsi/meet/your-domain.com-config.js

To improve video quality, edit like below

videoQuality: {
        preferredCodec: 'VP9',
    maxBitratesVideo: {
            low: 200000,
            standard: 500000,
           high: 1500000
       },
  minHeightForQualityLvl: {
            360: 'standard',
            720: 'high'
        }
    },

Also, change disableSimulcast like below

disableSimulcast: true,

For docker edit like below

config.disableSimulcast = true;

For stop blur in screen share change like below

 desktopSharingFrameRate: {
         min: 1,
         max: 5
    },

Leave a Reply