25 lines
644 B
YAML
25 lines
644 B
YAML
---
|
|
- name: Conf Jitsi - webcam en qualité medium par defaut
|
|
blockinfile:
|
|
path: /etc/jitsi/meet/{{ inventory_hostname }}-config.js
|
|
marker: "// {mark} ANSIBLE MANAGED BLOCK"
|
|
insertafter: "[^?]// Video"
|
|
block: |
|
|
resolution: 360,
|
|
constraints: {
|
|
video: {
|
|
aspectRatio: 16 / 9,
|
|
height: {
|
|
ideal: 360,
|
|
max: 360,
|
|
min: 240
|
|
}
|
|
}
|
|
},
|
|
|
|
- name: Conf Jitsi - Désactive l'effet floutage d'arrière plan
|
|
replace:
|
|
path: /usr/share/jitsi-meet/interface_config.js
|
|
regexp: "'videobackgroundblur',"
|
|
replace: ""
|