blob: b69ce992c06c7154cbeaf8ef7f86dad49339680a (
plain)
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
|
# whether the script is active by default
active=yes
# which black bars to replace with blur
# can be "all", "horizontal" or "vertical"
mode=all
# intensity of the blur
# see the ffmpeg filter doc https://ffmpeg.org/ffmpeg-filters.html#boxblur
# tl;dr higher means blurrier
blur_radius=10
blur_power=10
# the minimum size of the black bars for the effect to apply
minimum_black_bar_size=3
# if the aspect ratio of the video changes, we need to reapply the filter
# since this can happen very quickly, wait a short delay before doing it
reapply_delay=0.5
# until recently, resuming files that had the script active would unselect the video
# if your mpv version is more recent than feb 2 2018, you can set this to yes
watch_later_fix=no
# only apply the blur effect when mpv is set to fullscreen
only_fullscreen=yes
|