Add ytdlp_wrapper.sh script for downloading audio

from YouTube

Signed-off-by: Ferit Yiğit BALABAN <fybalaban@fybx.dev>
This commit is contained in:
Ferit Yiğit BALABAN 2023-11-10 21:05:22 +03:00
parent 67f77ffaae
commit 2ce48fc6a7
Signed by: fyb
GPG Key ID: E21FEB2C244CB7EB

5
ytdlp_wrapper.sh Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env bash
mkdir -p "./$1"
cd "./$1" || echo "Failed to change directory to $1" && exit 1
yt-dlp -x --audio-format best --audio-quality 0 "$2"