diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2023-03-15 19:35:56 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2023-03-15 19:36:15 +1300 |
commit | 282f79c703477f73f64df80cdf32a6905d2d8d06 (patch) | |
tree | 09092bd0db59cf406c71fddbe34f4c5c57ea705d /mpv | |
parent | Correct arrangement of X vs xsession install (diff) | |
download | dotfiles-282f79c703477f73f64df80cdf32a6905d2d8d06.tar.gz dotfiles-282f79c703477f73f64df80cdf32a6905d2d8d06.zip |
Add mpv config to retrieve lower-resolution videos
Diffstat (limited to 'mpv')
-rw-r--r-- | mpv/mpv.conf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mpv/mpv.conf b/mpv/mpv.conf index ca68ade7..553d73b7 100644 --- a/mpv/mpv.conf +++ b/mpv/mpv.conf @@ -25,3 +25,10 @@ screenshot-template="%f/mpv_%f_%P_%04n" # Don't try to find external subtitles for me; I'll specify if I want them. sub-auto=no + +# Get somewhat lower-resolution (<=640kps), lower-bitrate (<=500kbps) videos, +# so that they come down quicker and slower systems are less likely to stutter +# while playing them at busy times; if I want archival quality, I'll just +# invoke yt-dlp directly. +# +ytdl-format="[height<=?640][tbr<=?500]" |