jitsi/config/jitsi-meet.js
Knut Ahlers 346933c0ab
Allow cameras with more than 720p
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2020-05-06 18:16:16 +02:00

42 lines
736 B
JavaScript

var config = {
// Connection
bosh: '//{{ env `JITSI_DOMAIN` }}/http-bind',
hosts: {
domain: '{{ env `JITSI_DOMAIN` }}',
muc: 'conference.{{ env `JITSI_DOMAIN` }}',
bridge: 'jitsi-videobridge.{{ env `JITSI_DOMAIN` }}',
},
// Audio
enableNoAudioDetection: true,
enableNoisyMicDetection: true,
// Video: Allow cams with more than 720p
constraints: {
video: {
height: {
ideal: 720,
max: 1080,
min: 240
}
}
},
// Misc
channelLastN: 10,
// UI
useNicks: false,
enableWelcomePage: true,
// Peer-To-Peer mode
p2p: {
enabled: true,
stunServers: [
{ urls: 'stun:meet-jit-si-turnrelay.jitsi.net:443' }
],
preferH264: true
},
};