Compare commits

..

No commits in common. "3c522c64599fa56568e8edb1716ace7e3c4b1194" and "4084f836cc0a378a64f71fb426b32ed9f8b94037" have entirely different histories.

View File

@ -67,14 +67,16 @@ ydl_opts = {
'outtmpl': '{}/%(uploader)s-%(title)s-%(id)s.%(ext)s'.format(playlistDir) 'outtmpl': '{}/%(uploader)s-%(title)s-%(id)s.%(ext)s'.format(playlistDir)
} }
for v in filteredVideos: for v in filteredVideos:
print(getYear(v), getId(v))
videoURL = 'https://www.youtube.com/watch?v='+getId(v)
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([videoURL])
# Save metadata to file # Save metadata to file
descriptionFile = '{}/{}-{}-{}.txt'.format(playlistDir, description = open('{}/{}-{}-{}.txt'.format(playlistDir,
getChannel(v), getChannel(v),
getTitle(v).replace('/', ''), getTitle(v),
getId(v)) getId(v)), 'w')
if not os.path.exists(descriptionFile):
description = open(descriptionFile, 'w')
description.write('Title: ' + getTitle(v) + '\n') description.write('Title: ' + getTitle(v) + '\n')
description.write('Uploaded: ' + getUploadTime(v) + '\n') description.write('Uploaded: ' + getUploadTime(v) + '\n')
description.write('Channel: ' + getChannel(v) + '\n') description.write('Channel: ' + getChannel(v) + '\n')
@ -83,8 +85,3 @@ for v in filteredVideos:
description.write('Tags: ' + getTags(v) + '\n') description.write('Tags: ' + getTags(v) + '\n')
description.write('Video ID: ' + getId(v) + '\n') description.write('Video ID: ' + getId(v) + '\n')
description.close() description.close()
videoURL = 'https://www.youtube.com/watch?v='+getId(v)
with youtube_dl.YoutubeDL(ydl_opts) as ydl:
ydl.download([videoURL])