mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 20:17:22 +01:00
[extractor/reddit] Extract crossposted media (#5801)
Closes #5798 Authored by: bashonly
This commit is contained in:
parent
5424dbaf91
commit
1fc089143c
@ -64,6 +64,25 @@ class RedditIE(InfoExtractor):
|
|||||||
'id': 'wzqkxp',
|
'id': 'wzqkxp',
|
||||||
'title': 'md5:72d3d19402aa11eff5bd32fc96369b37',
|
'title': 'md5:72d3d19402aa11eff5bd32fc96369b37',
|
||||||
},
|
},
|
||||||
|
}, {
|
||||||
|
# crossposted reddit-hosted media
|
||||||
|
'url': 'https://www.reddit.com/r/dumbfuckers_club/comments/zjjw82/cringe/',
|
||||||
|
'md5': '746180895c7b75a9d6b05341f507699a',
|
||||||
|
'info_dict': {
|
||||||
|
'id': 'a1oneun6pa5a1',
|
||||||
|
'ext': 'mp4',
|
||||||
|
'display_id': 'zjjw82',
|
||||||
|
'title': 'Cringe',
|
||||||
|
'uploader': 'Otaku-senpai69420',
|
||||||
|
'thumbnail': r're:^https?://.*\.(?:jpg|png)',
|
||||||
|
'upload_date': '20221212',
|
||||||
|
'timestamp': 1670812309,
|
||||||
|
'duration': 16,
|
||||||
|
'like_count': int,
|
||||||
|
'dislike_count': int,
|
||||||
|
'comment_count': int,
|
||||||
|
'age_limit': 0,
|
||||||
|
},
|
||||||
}, {
|
}, {
|
||||||
'url': 'https://www.reddit.com/r/videos/comments/6rrwyj',
|
'url': 'https://www.reddit.com/r/videos/comments/6rrwyj',
|
||||||
'only_matching': True,
|
'only_matching': True,
|
||||||
@ -179,7 +198,8 @@ def add_thumbnail(src):
|
|||||||
raise ExtractorError('No media found', expected=True)
|
raise ExtractorError('No media found', expected=True)
|
||||||
|
|
||||||
# Check if media is hosted on reddit:
|
# Check if media is hosted on reddit:
|
||||||
reddit_video = traverse_obj(data, (('media', 'secure_media'), 'reddit_video'), get_all=False)
|
reddit_video = traverse_obj(data, (
|
||||||
|
(None, ('crosspost_parent_list', ...)), ('secure_media', 'media'), 'reddit_video'), get_all=False)
|
||||||
if reddit_video:
|
if reddit_video:
|
||||||
playlist_urls = [
|
playlist_urls = [
|
||||||
try_get(reddit_video, lambda x: unescapeHTML(x[y]))
|
try_get(reddit_video, lambda x: unescapeHTML(x[y]))
|
||||||
|
Loading…
Reference in New Issue
Block a user