|
1 | 1 |
|
2 |
| -# MPV v3 Config - version 1.0.10 |
| 2 | +# MPV v3 Config - version 1.0.12 |
| 3 | +# Last Edited: 2023-05-07 11:54:41PM |
3 | 4 |
|
4 | 5 | # REF: https://github.com/Argon-/mpv-config/blob/master/mpv.conf
|
5 | 6 |
|
6 | 7 | # ===== Terminal =====
|
7 | 8 |
|
8 |
| -cursor-autohide=200 # autohides the cursor after 200ms |
| 9 | +cursor-autohide=100 # autohides the cursor after x ms |
9 | 10 | cursor-autohide-fs-only=yes # don't autohide the cursor in window mode, only fullscreen
|
10 | 11 | msg-color=yes # color log messages on terminal
|
11 | 12 | msg-module=yes # prepend module name to log messages
|
12 | 13 | term-osd-bar=yes # displays a progress bar on the terminal
|
13 | 14 |
|
14 | 15 | # ===== OSD =====
|
15 | 16 |
|
16 |
| -osd-bar-align-y=-1 # progress bar y alignment (-1 top, 0 centered, 1 bottom) |
| 17 | +osd-bar-align-y=-1 # progress bar y alignment (-1 top, 0 centered, 1 bottom) |
17 | 18 | osd-bar-h=2 # height of osd bar as a fractional percentage of your screen height
|
18 | 19 | osd-bar-w=99 # width of " " "
|
19 | 20 | osd-border-color='#DD322640' # ARGB format
|
20 | 21 | osd-border-size=2 # size for osd text and progress bar
|
21 | 22 | osd-color='#FFFFFFFF' # ARGB format
|
22 |
| -osd-duration=2000 # hide the osd after x ms |
| 23 | +osd-duration=1000 # hide the osd after x ms |
23 | 24 | osd-font-size=32
|
24 |
| -#osd-font='Arial' # sets a custom font (comment out line if font change is undesired) |
| 25 | +#osd-font='Arial' # sets a custom font (comment out line if font change is undesired) |
25 | 26 | osd-status-msg='${time-pos} / ${duration}${?percent-pos: (${percent-pos}%)}${?frame-drop-count:${!frame-drop-count==0: Dropped: ${frame-drop-count}}}\n${?chapter:Chapter: ${chapter}}'
|
26 | 27 |
|
27 | 28 | # ===== Seeking =====
|
@@ -83,3 +84,52 @@ force-seekable=yes # forces videos to be seekable
|
83 | 84 | hls-bitrate=max # uses max quality for HLS streams
|
84 | 85 | pause=yes # disables autoplay
|
85 | 86 | prefetch-playlist=yes # prefetches the playlist
|
| 87 | + |
| 88 | +snap-window=yes |
| 89 | + |
| 90 | +# =========================================================================================================== |
| 91 | + |
| 92 | +# Version 1.0.12 Changes |
| 93 | + |
| 94 | +fullscreen=yes # Sets the video to start fullscreen |
| 95 | +keep-open=yes # Don't terminate if the current file is the last playlist entry |
| 96 | +priority=high # Makes PC prioritize MPV for allocating resources |
| 97 | +screen=0 # Sets the video to appear on screen #1 |
| 98 | +sub-back-color='#C0000000' # subtitle background color <==================== TESTING 07.05.2023! |
| 99 | +vlang=en,eng # Sets the video language |
| 100 | +vo=gpu-next # Sets the video out to an experimental video renderer based on libplacebo |
| 101 | +window-maximized=yes # Starts the window in the maximized state |
| 102 | + |
| 103 | +# TESTING SHADERS - version 1.0.12 - 07.05.2023 |
| 104 | +# May be included in a future release. Needs more testing! |
| 105 | + |
| 106 | +#[upscale-lowres] |
| 107 | +#profile-desc=Upscales low resolution videos using upscaling shaders. |
| 108 | +#profile-cond=height <= 1000 |
| 109 | +# AMD (modal: switch depending on your GPU, if no discrete GPU then comment out four lines) |
| 110 | +#glsl-shaders-append="shaders/CAS.glsl" # https://gist.github.com/agyild/bbb4e58298b2f86aa24da3032a0d2ee6 |
| 111 | +#glsl-shaders-append="shaders/FSR.glsl" # https://gist.github.com/agyild/82219c545228d70c5604f865ce0b0ce5 |
| 112 | +# NVidia (modal: switch depending on your GPU, if no discrete GPU then comment out four lines) |
| 113 | +#glsl-shaders-append="shaders/NVScaler.glsl" # https://gist.github.com/agyild/7e8951915b2bf24526a9343d951db214 |
| 114 | +#glsl-shaders-append="shaders/NVSharpen.glsl" # https://gist.github.com/agyild |
| 115 | + |
| 116 | +# File Extensions ====================== |
| 117 | +# (Loops playback for suitable file formats) |
| 118 | + |
| 119 | +[extension.gif] |
| 120 | +profile-desc=GIF |
| 121 | +cache=no |
| 122 | +no-pause |
| 123 | +loop-file=yes |
| 124 | +[extension.png] |
| 125 | +profile-desc=PNG |
| 126 | +video-aspect-override=no |
| 127 | +loop-file=yes |
| 128 | +[extension.jpg] |
| 129 | +profile-desc=JPG |
| 130 | +video-aspect-override=no |
| 131 | +loop-file=yes |
| 132 | +[extension.jpeg] |
| 133 | +profile-desc=JPEG |
| 134 | +profile=extension.jpg |
| 135 | +loop-file=yes |
0 commit comments