diff options
author | xyz <gky44px1999@gmail.com> | 2022-03-30 02:38:29 -0700 |
---|---|---|
committer | xyz <gky44px1999@gmail.com> | 2022-03-30 02:38:29 -0700 |
commit | cd5b43a1ee8b59f8e1f2ab454146c314cfa44424 (patch) | |
tree | 75d88fb008679fcdf568752c6ff2cd07e3930a17 | |
parent | c276032599e78be1748b1ac110fc0f2aadc9eb41 (diff) |
new gpu support vp9
-rwxr-xr-x | home/xyz/.local/bin/mpvy | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/home/xyz/.local/bin/mpvy b/home/xyz/.local/bin/mpvy index 880d1ffa..434db58c 100755 --- a/home/xyz/.local/bin/mpvy +++ b/home/xyz/.local/bin/mpvy @@ -22,7 +22,8 @@ while getopts Aabd:f:h:su: opt; do esac done if [ -z "$format" ]; then - vformat="[height<=?$height][fps<=?$fps][vcodec!^=?vp9][vcodec!^=?av01]" + #vformat="[height<=?$height][fps<=?$fps][vcodec!^=?vp9][vcodec!^=?av01]" + vformat="[height<=?$height][fps<=?$fps][vcodec!^=?av01]" # usually get .mp4 video + .webm audio on youtube, yt-dlp needs to merge them to .mkv # it used to cause problem, but I forget format="bestvideo$vformat+bestaudio/best$vformat" |