dotfiles/.config/mpv/mpv.conf

118 lines
2.0 KiB
INI
Raw Normal View History

2019-05-28 17:44:30 +02:00
# Audio {{{
# Specify the audio output drivers to be used.
2020-03-23 12:23:14 +01:00
ao=pulse
2019-05-28 17:44:30 +02:00
# }}}
2019-09-25 20:07:56 +02:00
# Input {{{
# Disable default key bindings.
input-default-bindings=no
# }}}
2019-11-10 17:43:16 +01:00
# Track selection {{{
# Specify a priority list of audio languages to use.
alang=eng,jpn
# Specify a priority list of subtitle languages to use.
slang=eng,ell
# }}}
2019-05-28 17:44:30 +02:00
# Network {{{
# User agent for HTTP streaming.
2021-02-07 18:28:14 +01:00
user-agent="Mozilla/5.0 (X11; Linux x86_64) mpv/0.33.0"
2019-05-28 17:44:30 +02:00
# }}}
# OSD {{{
# Set the duration of the OSD messages in ms.
2019-11-11 18:44:44 +01:00
osd-duration=5000
2019-05-28 17:44:30 +02:00
# Specify font to use for OSD.
osd-font="Fantasque Sans Mono"
2019-09-25 20:07:56 +02:00
# Specify the OSD font size.
osd-font-size=35
2019-05-28 17:44:30 +02:00
# }}}
# Program Behavior {{{
# Makes mpv wait idly instead of quitting
# when there is no file to play.
idle=yes
# Always save the current playback position on quit.
save-position-on-quit=yes
# Video format/quality that is directly passed to youtube-dl.
2019-10-21 09:51:06 +02:00
ytdl-format=best[height<=?1080]
2019-05-28 17:44:30 +02:00
2019-09-02 03:42:42 +02:00
# Options that are directly passed to youtube-dl.
ytdl-raw-options="yes-playlist="
2019-05-28 17:44:30 +02:00
# }}}
# Screenshot {{{
# Store screenshots in this directory.
screenshot-directory=~/Pictures/
# Set the image file type used for saving screenshots.
2020-04-25 21:12:40 +02:00
screenshot-format=webp
# Set the WebP compression level.
screenshot-webp-compression=5
2019-05-28 17:44:30 +02:00
2020-04-25 21:12:40 +02:00
# Write lossless WebP files.
screenshot-webp-lossless=yes
2019-05-28 17:44:30 +02:00
# Specify the filename template used to save screenshots.
2019-09-25 20:07:56 +02:00
screenshot-template=shot_%F_%wH-%wM-%wS
2019-05-28 17:44:30 +02:00
# }}}
# Video {{{
# Specify the hardware video decoding API
# that should be used if possible.
2020-04-25 21:12:40 +02:00
hwdec=none
2019-05-28 17:44:30 +02:00
# Specify the video output backend to be used.
2019-10-21 09:51:06 +02:00
vo=gpu
2019-05-28 17:44:30 +02:00
# }}}
# Window {{{
# Do not terminate when playing or seeking
# beyond the end of the file.
keep-open=yes
# In multi-monitor configurations, this option
# tells mpv which screen to display the video on.
screen=1
# }}}
# Subtitles {{{
2019-06-19 20:43:45 +02:00
# Load all subs in the current and sub-file-paths directories.
sub-auto=all
# Specify extra directories to search for subtitles.
sub-file-paths=Subs
2019-05-28 17:44:30 +02:00
# Specify the position of subtitles on the screen.
2021-02-07 18:28:14 +01:00
sub-pos=99
2019-05-28 17:44:30 +02:00
# }}}
2019-06-19 20:43:45 +02:00
# vim:ft=cfg:fdm=marker:fdl=1: