feat: add simple mpv config
This commit is contained in:
parent
36a227e368
commit
a9544f43a5
6 changed files with 50 additions and 23 deletions
4
media.yml
Normal file
4
media.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- name: Media
|
||||
hosts: odhosts
|
||||
roles:
|
||||
- media
|
|
@ -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
|
16
roles/media/files/mpv.conf
Normal file
16
roles/media/files/mpv.conf
Normal 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
|
11
roles/media/tasks/hw-accel.yml
Normal file
11
roles/media/tasks/hw-accel.yml
Normal 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
|
4
roles/media/tasks/main.yml
Normal file
4
roles/media/tasks/main.yml
Normal 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
15
roles/media/tasks/mpv.yml
Normal 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'
|
Loading…
Reference in a new issue