You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice to be able to mass download everything in a youtube playlist as a zip file.
Expected Behaviour
Input a YT playlist link (eg this)
And it returns a ZIP with every song with the selected format.
Metadata should be handled by choosing the first result from the metadata search.
The text was updated successfully, but these errors were encountered:
mkdir playlist-content # Create a separate dir to download the music to
ytmdl "https://www.youtube.com/playlist?list=<id>" --title-as-name --choice 1 --on-meta-error skip -o playlist-content
zip -r playlist.zip playlist-content
Above will create a separate directory to download the playlist songs. Then it will run ytmdl with the playlist URL where the metadata will be searched with the title of the song (from youtube) and the first choice will be used. Finally, the zip command is used to zip the contents of the directory into a single file called playlist.zip.
Feature Reques
Description
It would be nice to be able to mass download everything in a youtube playlist as a zip file.
Expected Behaviour
Input a YT playlist link (eg this)
And it returns a ZIP with every song with the selected format.
Metadata should be handled by choosing the first result from the metadata search.
The text was updated successfully, but these errors were encountered: