made cloning resolve the playlist name automatically

This commit is contained in:
Emma Tebibyte 2023-11-21 12:46:31 -07:00
parent 76b633cbdb
commit 897f88aea6
Signed by: emma
GPG Key ID: 6D661C738815E7DD

5
yt
View File

@ -19,6 +19,7 @@
set -e
test -z "$DEBUG" || set -x
test -z "$XDG_CACHE_HOME" && cachefile="$HOME/.cache/yt.cache" \
|| cachefile="$XDG_CACHE_HOME/yt.cache"
@ -88,7 +89,9 @@ 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"
file="$YT_PL_DIR/$2.m3u"
if test -n "$2" && file="$2" \
|| file="$YT_PL_DIR/$('%(playlist)s' "$1").m3u"
yt-dlp --flat-playlist "$1" --print url > "$file"
verify "$file"