summaryrefslogtreecommitdiffstatshomepage
path: root/mpv
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2022-05-27 13:41:12 -0500
committerToby Vincent <tobyv13@gmail.com>2022-05-27 13:41:32 -0500
commit517717d936f64380eb1adf5a8620d0906bdbb704 (patch)
treec599dabba31f54ce3c62a7a9122009a6dbd3cb96 /mpv
parent269d02815b4314f8d7fb3aee6bd3c59aa7089f80 (diff)
feat(mpv): added mpv config
Diffstat (limited to 'mpv')
-rwxr-xr-xmpv/.config/mpv/mpv.conf36
1 files changed, 36 insertions, 0 deletions
diff --git a/mpv/.config/mpv/mpv.conf b/mpv/.config/mpv/mpv.conf
new file mode 100755
index 0000000..a7fdb44
--- /dev/null
+++ b/mpv/.config/mpv/mpv.conf
@@ -0,0 +1,36 @@
+# Profile
+profile=gpu-hq
+profile-restore=copy-equal
+
+# Hardware
+hwdec=auto-copy
+# vo=gpu
+
+# Window
+save-position-on-quit=yes
+
+# Terminal
+msg-color=yes # color log messages on terminal
+term-osd-bar=yes # displays a progress bar on the terminal
+cursor-autohide=1000 # autohides the cursor after 1s
+
+# Caching
+cache=yes
+demuxer-max-bytes=1800M
+demuxer-max-back-bytes=1200M
+
+# Audio
+volume=60
+
+[twitch]
+profile-cond=get("media-title", ""):find("twitch.tv/[^ /]+") ~= nil
+profile-restore=copy-equal
+# border=no
+force-seekable=yes
+hr-seek=yes
+hr-seek-framedrop=yes
+demuxer-max-bytes=750k
+demuxer-max-back-bytes=1200M
+sub-font-size=14
+sub-align-x=right
+sub-align-y=top \ No newline at end of file