diff --git a/.config/mpv/input.conf b/.config/mpv/input.conf new file mode 100644 index 0000000..eef2fbb --- /dev/null +++ b/.config/mpv/input.conf @@ -0,0 +1,18 @@ +# Mouse wheel volume +WHEEL_UP add volume 5 +WHEEL_DOWN add volume -5 + +# Arrow keys seek +RIGHT seek 5 +LEFT seek -5 +UP seek 60 +DOWN seek -60 + +# The three controls I care about :) +Q quit +F cycle fullscreen +S screenshot + +# If I leave a video on and go to bed, this dims the video feed significantly +n set brightness -40;set gamma -40;show-text "Night Mode On" +N set brightness 0;set gamma 0;show-text "Night Mode Off" diff --git a/.config/mpv/mpv.conf b/.config/mpv/mpv.conf new file mode 100644 index 0000000..2c31edc --- /dev/null +++ b/.config/mpv/mpv.conf @@ -0,0 +1,16 @@ +# I like normalizing at 100% volume and going up from there +# 1000% is excessive but at least I'll never cap out +volume-max=1000 + +# My mpv usage is either on-disk media, or streamlink which does its own +# caching, so we don't need to double cache. +cache=no +cache-pause=no +demuxer-readahead-secs=1 + +# Audio filter to try to normalize audio levels. Especially important for +# Twitch where there's no defacto normal level to target +af="dynaudnorm=g=5:f=250:r=0.9:p=0.5" + +# Put screenshots in my bespoke screenshot dir +screenshot-directory=~/screenshot