]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - multimedia/mpv/mpv.conf
Merge branch 'multimedia' again
[config/dotfiles.git] / multimedia / mpv / mpv.conf
1 # Mpv (mplayer2 fork) configuration file.
2
3 # Copyright (C) 2011-2016  Simon Ruderich
4 #
5 # This file is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This file is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this file.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 # Use ALSA as audio driver.
20 ao=alsa
21 # Set default value of internal mixer (0-100). Since 0.18.1 mpv has no access
22 # to hardware mixer.
23 volume=50
24
25 # Fullscreen playback.
26 fs=yes
27
28 # Prefer English and German audio and subtitles.
29 alang=jpn,en,eng,de,ger
30 slang=en,eng,de,ger
31
32 # When playing MKV files try to always display the subtitle at the exact seek
33 # position by seeking a little further when looking for it. Otherwise only the
34 # next subtitle will be displayed. Thanks to lachs0r in #mpv on Freenode
35 # (2015-03-10 02:16 CET).
36 demuxer-mkv-subtitle-preroll=yes
37
38 # But don't display subtitles by default. Thanks to wm4 in #mpv-player on
39 # Freenode (2013-10-09 23:42 CEST) for this idea.
40 sub-visibility=no
41
42 # Reduce subtitle size (default is 45).
43 sub-font-size=33
44 # Increase bottom margin for subtitles (default is 10). Makes them more
45 # pleasant to read for me.
46 sub-margin-y=30
47
48 # Try to find subtitles in similar-looking file names.
49 sub-auto=fuzzy
50
51 # Disable the mouse as I don't use it.
52 input-cursor=no
53
54 # Always hide the cursor.
55 cursor-autohide=always
56
57 # Disable "on screen controller". I use the keyboard only.
58 osc=no
59
60 # Display position/length and cache in the progress overlay ("P" binding).
61 # Thanks to wm4 in $mpv-player on Freenode (2014-08-18 01:24 CEST).
62 osd-status-msg="${time-pos} / ${duration} (${percent-pos}%)${?cache-percent: Cache: ${cache-percent}%}"
63
64 # Don't display attached pictures in sound files.
65 audio-display=no
66
67 # vim: ft=mplayerconf