set channel name as album name

This commit is contained in:
Simon Rieger 2025-04-26 18:58:26 +02:00
parent 67a24157fa
commit 3e06ca7217

View file

@ -63,4 +63,19 @@ then
format="-f bestaudio"
fi
yt-dlp -i -c --socket-timeout 10000 --force-ipv4 --restrict-filenames --embed-thumbnail --embed-metadata --parse-metadata "album:%(channel)s" --match-filter "!was_live" ${format} ${audio} ${quality} -v ${url} ${extra}
yt-dlp \
-i \
-c \
--socket-timeout 10000 \
--force-ipv4 \
--restrict-filenames \
--embed-thumbnail \
--embed-metadata \
--parse-metadata "playlist_title:%(album)s" \
--match-filter "!was_live" \
${format} \
${audio} \
${quality} \
-v \
${url} \
${extra}