I've been trying to download the thumbnails of a list of URL's (youtube videos) I have.
I've been using youtube-dl and I've worked it out to this so far:
import os
with open('results.txt') as f:
for line in f:
os.system("youtube-dl " + "--write-thumbnail " + line)
Like this I'm able to download the thumbnails but I'm forced to downloading the youtube videos as well.
How can I just download the thumbnail?