fixed codecs plays

This commit is contained in:
Elia Farin
2024-10-30 14:27:13 -05:00
parent 809bd45461
commit 9e875d3f68

View File

@@ -5,22 +5,22 @@
update_cache: yes
- name: DNF Swap ffmpeg
ansible.builtin.command: dnf swap ffmpeg-free ffmpeg --allowerasing
ansible.builtin.command: dnf swap -y ffmpeg-free ffmpeg --allowerasing
become: yes
become_method: sudo
- name: install additional codecs
ansible.builtin.command: dnf update @multimedia --setopt="install_weak_deps=False" --exclude=PackageKit-gstreamer-plugin
ansible.builtin.command: dnf update -y @multimedia --setopt="install_weak_deps=False" --exclude=PackageKit-gstreamer-plugin
become: yes
become_method: sudo
- name: DNF Swap mesa-va-drivers
ansible.builtin.command: dnf swap mesa-va-drivers mesa-va-drivers-freeworld
ansible.builtin.command: dnf swap -y mesa-va-drivers mesa-va-drivers-freeworld
become: yes
become_method: sudo
- name: DNF Swap mesa-vdpau-drivers
ansible.builtin.command: dnf swap mesa-vdpau-drivers mesa-vdpau-drivers-freeworld
ansible.builtin.command: dnf swap -y mesa-vdpau-drivers mesa-vdpau-drivers-freeworld
become: yes
become_method: sudo