59

I was wondering if it was possible to download a youtube playlist as mp3 using youtube-dl, skipping already existing files. I am using this command:

youtube-dl --continue --ignore-errors --no-overwrites --extract-audio --audio-format mp3 --output "%(title)s.%(ext)s" [path here]

and, even though I set it to not overwrite, it does redownload everything from scratch. Is this possible?

Ravan
  • 9,567
Warrior
  • 693

3 Answers3

103

With the option --download-archive FILE youtube-dl both reads and adds to a list of files not to download again. Every time a file is successfully downloaded, that video id is added to FILE.

You can use it as follows:

youtube-dl --download-archive downloaded.txt --no-post-overwrites -ciwx --audio-format mp3 -o "%(title)s.%(ext)s" [path here]

It will redownload any videos from before that you didn't keep for one last time as it creates the list. You can now delete them.

If your MP3 files had been named with the default format of %(title)s-%(id)s.%(ext)s, you could have avoided the redownload by creating downloaded.txt from the youtube %(id)s in a bash terminal as follows:

for n in *.mp3
do if [[ "$n" =~ -[-_0-9a-zA-Z]{11}.mp3$ ]]
   then echo "youtube ${n: -15: 11}" >> downloaded.txt
   fi
done
Eliah Kagan
  • 119,640
Martin Thornton
  • 5,996
  • 12
  • 32
  • 43
12

This is really helpful. If it's of any use to anybody, I modified the code to create the existing downloads list to include all files in the folder. Useful if downloading audio with the --extract-audio and --audio-quality "best" flags

create_download_list.sh:

#!/usr/bin/env bash

for n in . do if [[ "$n" =~ -([-_0-9a-zA-Z]{11}).*$ ]] then echo "youtube ${BASH_REMATCH[1]}" fi done > downloaded.txt

I'm sure most people could have worked that out for themselves, but not everyone is clued-up with bash scripting.

0

I use the following approach:

yt-dlp --download-archive downloaded.txt --no-post-overwrites -ciwx "put format here" "put url here"

And I use the code below for downloading youtube playlist with tons of videos which also requires membership.

yt-dlp --cookies cookies.txt --download-archive downloaded.txt --no-post-overwrites -ciwx "put format here" "put url here"
zx485
  • 2,865