diff --git a/roles/codecs/tasks/main.yml b/roles/codecs/tasks/main.yml index b4f2593..11e2ea6 100644 --- a/roles/codecs/tasks/main.yml +++ b/roles/codecs/tasks/main.yml @@ -5,13 +5,15 @@ changed_when: true - name: 'Enable openh264' - ansible.builtin.cmd: 'dnf-config-manager setopt fedora-cisco-openh264.enabled=1' + ansible.builtin.cmd: + cmd: 'dnf-config-manager setopt fedora-cisco-openh264.enabled=1' changed_when: true - name: 'Swap ffmpeg-free for ffmpeg' ansible.builtin.command: cmd: 'dnf swap ffmpeg-free ffmpeg --allowerasing -y' changed_when: true + - name: 'Install libavcodec' ansible.builtin.dnf: name: 'libavcodec-freeworld'