aboutsummaryrefslogtreecommitdiffstats
path: root/gallery_dl/extractor/reddit.py
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2024-03-25 02:57:50 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2024-03-25 02:57:50 -0400
commit039aecad63a074bdcc75bd4f30c84bdc4a1a244f (patch)
tree39997d0361f67208c716fba6717895b42ee309d1 /gallery_dl/extractor/reddit.py
parent77d11300e15ee4045b187a58ee6e039624e5d69c (diff)
parent6e662211019a89caec44de8a57c675872b0b5498 (diff)
Update upstream source from tag 'upstream/1.26.9'
Update to upstream version '1.26.9' with Debian dir e04ff15132747292d335c9d456bd879aca333115
Diffstat (limited to 'gallery_dl/extractor/reddit.py')
-rw-r--r--gallery_dl/extractor/reddit.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/gallery_dl/extractor/reddit.py b/gallery_dl/extractor/reddit.py
index 2ef0f9f..e099c7e 100644
--- a/gallery_dl/extractor/reddit.py
+++ b/gallery_dl/extractor/reddit.py
@@ -191,6 +191,8 @@ class RedditExtractor(Extractor):
try:
if "reddit_video_preview" in post["preview"]:
video = post["preview"]["reddit_video_preview"]
+ if "fallback_url" in video:
+ yield video["fallback_url"]
if "dash_url" in video:
yield "ytdl:" + video["dash_url"]
if "hls_url" in video:
@@ -200,6 +202,12 @@ class RedditExtractor(Extractor):
try:
for image in post["preview"]["images"]:
+ variants = image.get("variants")
+ if variants:
+ if "gif" in variants:
+ yield variants["gif"]["source"]["url"]
+ if "mp4" in variants:
+ yield variants["mp4"]["source"]["url"]
yield image["source"]["url"]
except Exception as exc:
self.log.debug("%s: %s", exc.__class__.__name__, exc)