Skip Video Thumbnail
RVLVT opened this issue · 3 comments
RVLVT commented
Hi! I noticed that this script also downloading the video thumbnail, is there anyway to skip downloading video thumbnail?
dvingerh commented
Update the script to the latest version and you'll be able to pass --no-thumbs
to skip downloading video thumbnails.
RVLVT commented
Awesome! Works perfectly
ooh.. just wanna point out that the URLopener got deprecation warning on python 3.7, changed it to urllib.urlretrieve(video[0], save_path)
or urllib.urlretrieve(image[0], save_path)
works fine for me.
dvingerh commented
Now using urllib.urlretrieve()
🙂