diff --git a/yt-dlp-functions.sh b/yt-dlp-functions.sh index 79b00bf..e5f3b53 100644 --- a/yt-dlp-functions.sh +++ b/yt-dlp-functions.sh @@ -1,21 +1,17 @@ -ytdns() { # yt download no-subs +ytd() { # yt download yt-dlp \ --merge-output-format mkv --embed-chapters \ + --all-subs --embed-subs \ --format="((248/bestvideo[height<=1080])+(251/bestaudio))/best" \ "$@" } -ytd() { # yt download - ytdns --all-subs --embed-subs "$@" -} -ytdbns() { # yt download best no-subs +ytdb() { # yt download best yt-dlp \ --merge-output-format mkv --embed-chapters \ + --all-subs --embed-subs \ --format="(bestvideo+bestaudio)/best" \ "$@" } -ytdb() { # yt download best - ytdbns --all-subs --embed-subs "$@" -} ytda() { # yt download audio yt-dlp --extract-audio --format="bestaudio" "$@" }