blob: 16a845020981349a89e70a389995bd67ca0453c8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# set initial volume to 50%
volume=50
# yt-dlp subs
sub-auto=fuzzy
ytdl-raw-options=sub-format=en,write-srt=
# default yt-dlp quality
ytdl-format=bestvideo[height<=?480][fps<=?30]+bestaudio/best
# Disable display on audio
no-audio-display
# htpc specific profile
[htpc]
audio-device="alsa/hdmi:CARD=HDMI,DEV=0"
volume=100
fullscreen
ytdl-format=bestvideo[height<=?720][fps<=?30]+bestaudio/best
# always loop filetypes
[extension.gif]
loop-file=inf
[extension.webm]
loop-file=inf
# pause on image filetypes
[extension.jpg]
pause
[extension.png]
pause
[extension.webp]
pause
# enable hardware decoding
hwdec=auto
|