feat: add simple mpv config

This commit is contained in:
Ivan R. 2024-04-26 16:47:17 +05:00
parent 36a227e368
commit a9544f43a5
Signed by: lumin
GPG key ID: E0937DC7CD6D3817
6 changed files with 50 additions and 23 deletions

4
media.yml Normal file
View file

@ -0,0 +1,4 @@
- name: Media
hosts: odhosts
roles:
- media

View file

@ -1,23 +0,0 @@
- name: Multimedia
hosts: odhosts
tasks:
- name: Install video/audio players
become: true
ansible.builtin.apt:
pkg:
- mpv
- haruna
- vlc
- name: Install image viewers and editors
become: true
ansible.builtin.apt:
pkg:
- gwenview
- gimp
- inkscape
- name: Install image/video processing software
become: true
ansible.builtin.apt:
pkg:
- imagemagick
- ffmpeg

View file

@ -0,0 +1,16 @@
# Don't start in fullscreen mode by default.
fs=no
# Enable hardware decoding if available. Often, this does not work with all
# video outputs, but should work well with default settings on most systems.
# If performance or energy usage is an issue, forcing the vdpau or vaapi VOs
# may or may not help.
hwdec=auto
# Display Russian subtitles if available.
slang=ru
# Enable fuzzy searching.
sub-auto=fuzzy
# Play Japanese audio if available, fall back to English and Russian otherwise.
alang=en,jp,ru

View file

@ -0,0 +1,11 @@
- name: Install VA-API and VDPAU
become: true
ansible.builtin.apt:
pkg:
- mesa-va-drivers
- vdpau-driver-all
- name: Install vulkan drivers
become: true
ansible.builtin.apt:
pkg:
- mesa-vulkan-drivers

View file

@ -0,0 +1,4 @@
- name: Hardware acceleration
import_tasks: hw-accel.yml
- name: MPV
import_tasks: mpv.yml

15
roles/media/tasks/mpv.yml Normal file
View file

@ -0,0 +1,15 @@
- name: Install mpv
become: true
ansible.builtin.apt:
pkg:
- mpv
- name: Create mpv config dir
ansible.builtin.file:
path: "{{ ansible_env.HOME }}/.config/mpv"
state: directory
mode: '1770'
- name: Copy mpv config file
ansible.builtin.copy:
src: files/mpv.conf
dest: "{{ ansible_env.HOME }}/.config/mpv/mpv.conf"
mode: '0660'