diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-06-05 00:41:15 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-06-05 00:41:15 -0700 |
commit | ae5fd9eb009c6522e7d7971e0bdea57faaaf2b3c (patch) | |
tree | 424a1c1e3923edd99b7b14a8ca6492b97c1b96f8 /youtube/util.py | |
parent | ccb795e31f2f9944b1c8b061906eb752009f8ea7 (diff) | |
download | yt-local-ae5fd9eb009c6522e7d7971e0bdea57faaaf2b3c.tar.lz yt-local-ae5fd9eb009c6522e7d7971e0bdea57faaaf2b3c.tar.xz yt-local-ae5fd9eb009c6522e7d7971e0bdea57faaaf2b3c.zip |
Make thumbnails work and other stuff
Diffstat (limited to 'youtube/util.py')
-rw-r--r-- | youtube/util.py | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/youtube/util.py b/youtube/util.py index 9950815..42d76a3 100644 --- a/youtube/util.py +++ b/youtube/util.py @@ -5,6 +5,8 @@ import brotli import urllib.parse import re import time +import os +import gevent # The trouble with the requests library: It ships its own certificate bundle via certifi # instead of using the system certificate store, meaning self-signed certificates @@ -176,6 +178,36 @@ desktop_ua = (('User-Agent', desktop_user_agent),) +def download_thumbnail(save_directory, video_id): + url = "https://i.ytimg.com/vi/" + video_id + "/mqdefault.jpg" + save_location = os.path.join(save_directory, video_id + ".jpg") + try: + thumbnail = fetch_url(url, report_text="Saved thumbnail: " + video_id) + except urllib.error.HTTPError as e: + print("Failed to download thumbnail for " + video_id + ": " + str(e)) + return + try: + f = open(save_location, 'wb') + except FileNotFoundError: + os.makedirs(save_directory) + f = open(save_location, 'wb') + f.write(thumbnail) + f.close() + +def download_thumbnails(save_directory, ids): + if not isinstance(ids, (list, tuple)): + ids = list(ids) + # only do 5 at a time + # do the n where n is divisible by 5 + i = -1 + for i in range(0, int(len(ids)/5) - 1 ): + gevent.joinall([gevent.spawn(download_thumbnail, save_directory, ids[j]) for j in range(i*5, i*5 + 5)]) + # do the remainders (< 5) + gevent.joinall([gevent.spawn(download_thumbnail, save_directory, ids[j]) for j in range(i*5 + 5, len(ids))]) + + + + def dict_add(*dicts): |