scripts/ytdlp_wrapper.sh
Ferit Yiğit BALABAN 2ce48fc6a7
Add ytdlp_wrapper.sh script for downloading audio
from YouTube

Signed-off-by: Ferit Yiğit BALABAN <fybalaban@fybx.dev>
2023-11-10 21:05:22 +03:00

6 lines
153 B
Bash
Executable File

#!/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"