diff options
author | Tharre <tharre3@gmail.com> | 2020-01-03 05:30:08 +0100 |
---|---|---|
committer | Tharre <tharre3@gmail.com> | 2020-01-03 05:33:19 +0100 |
commit | 3942dcd12c0ca9aac4577d2822a52329d116f2fe (patch) | |
tree | de5790b603b61bb63ad1a8a97fe7d8cba5d6e0d1 | |
parent | 936d41a0af416c516c6051cf5e5c7dca68ebcb14 (diff) | |
download | dotfiles-3942dcd12c0ca9aac4577d2822a52329d116f2fe.tar.gz dotfiles-3942dcd12c0ca9aac4577d2822a52329d116f2fe.tar.xz dotfiles-3942dcd12c0ca9aac4577d2822a52329d116f2fe.zip |
youtube-dl: maybe better video format selection
-rw-r--r-- | .config/mpv/mpv.conf | 2 | ||||
-rw-r--r-- | .config/youtube-dl/config | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.config/mpv/mpv.conf b/.config/mpv/mpv.conf index 13a4594..45605bb 100644 --- a/.config/mpv/mpv.conf +++ b/.config/mpv/mpv.conf @@ -1,6 +1,6 @@ hwdec=vaapi vo=gpu save-position-on-quit -ytdl-format=bestvideo[height<=?1080][vcodec!=vp9]+bestaudio/best +ytdl-format=bestvideo[height<=1080]+bestaudio/best[height<=1080] volume-max=600 hdr-compute-peak=no diff --git a/.config/youtube-dl/config b/.config/youtube-dl/config index 9d23a8b..3233a9d 100644 --- a/.config/youtube-dl/config +++ b/.config/youtube-dl/config @@ -1 +1 @@ --f 'bestvideo[height<=?1080][vcodec!=vp9]+bestaudio/best' +-f 'bestvideo[height<=1080]+bestaudio/best[height<=1080]' |