fixed clone

This commit is contained in:
Emma Tebibyte 2023-11-21 12:57:15 -07:00
parent 28395cd5e8
commit 32101cd6a6
Signed by: emma
GPG Key ID: 6D661C738815E7DD

4
yt
View File

@ -90,8 +90,8 @@ cache() { # cache the video title for faster retrieval
clone() { # clones a YouTube playlist to a file
test -d "$YT_PL_DIR" || mkdir -p "$YT_PL_DIR"
if test -n "$2" && file="$2" \
|| file="$YT_PL_DIR/$('%(playlist)s' "$1").m3u"
test -n "$2" && file="$2" \
|| file="$YT_PL_DIR/$(yt-dlp -s -I '1:1' --print '%(playlist)s' "$1").m3u"
yt-dlp --flat-playlist "$1" --print url > "$file"
verify "$file"