diff options
author | Matthew Lemon <y@yulqen.org> | 2024-11-28 21:29:51 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-11-28 21:29:51 +0000 |
commit | a9deea870e500ab63fad8fa71b5da3e4806fe5e0 (patch) | |
tree | a3db2a1af90a8e7e29872e2a9ed2c45f8647a442 | |
parent | 47561ac9533ed2120f846b4c91a87bba5c0f228f (diff) |
Config for mpv to make it better on the laptop
-rw-r--r-- | mpv/mpv.conf | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mpv/mpv.conf b/mpv/mpv.conf index e51d0a2..fbd02a4 100644 --- a/mpv/mpv.conf +++ b/mpv/mpv.conf @@ -7,4 +7,10 @@ hwdec=vaapi audio-channels=2 save-position-on-quit=yes #ytdl-format=bestvideo[height <= 1080]+bestaudio/best + +# this reduces quality for streaming - say on data +# from https://github.com/mpv-player/mpv/issues/4241 +ytdl-format=bestvideo[height <= 720][fps<=30][vcodec!=vp9]+bestaudio/best[height<=720] +#ytdl-format=bestvideo[height<=?720][fps<=?30][vcodec!=?vp9]+bestaudio/best +#ytdl-format=bestvideo[height <= 720]+bestaudio/best script-opts-append=ytdl_hook-ytdl_path=yt-dlp |