From 5ab985c9d057147f9b7c7b0323885dfc0e7119dc Mon Sep 17 00:00:00 2001 From: Midgard <2885-Midgard@users.noreply.framagit.org> Date: Fri, 7 Oct 2022 16:25:57 +0200 Subject: [PATCH] [yt-dlp-functions] Only English subs, and remove "no-subs" variation --- yt-dlp-functions.sh | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) 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" "$@" }