]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/substack.py
[extractors] Use new framework for existing embeds (#4307)
[yt-dlp.git] / yt_dlp / extractor / substack.py
CommitLineData
612e31f5
E
1import re
2import urllib.parse
3
4from .common import InfoExtractor
5from ..utils import str_or_none, traverse_obj
6
7
8class SubstackIE(InfoExtractor):
9 _VALID_URL = r'https?://(?P<username>[\w-]+)\.substack\.com/p/(?P<id>[\w-]+)'
10 _TESTS = [{
11 'url': 'https://haleynahman.substack.com/p/i-made-a-vlog?s=r',
12 'md5': 'f27e4fc6252001d48d479f45e65cdfd5',
13 'info_dict': {
14 'id': '47660949',
15 'ext': 'mp4',
16 'title': 'I MADE A VLOG',
17 'description': 'md5:10c01ff93439a62e70ce963b2aa0b7f6',
18 'thumbnail': 'md5:bec758a34d8ee9142d43bcebdf33af18',
19 'uploader': 'Maybe Baby',
20 'uploader_id': '33628',
21 }
22 }, {
23 'url': 'https://haleynahman.substack.com/p/-dear-danny-i-found-my-boyfriends?s=r',
24 'md5': '0a63eacec877a1171a62cfa69710fcea',
25 'info_dict': {
26 'id': '51045592',
27 'ext': 'mpga',
28 'title': "🎧 Dear Danny: I found my boyfriend's secret Twitter account",
29 'description': 'md5:a57f2439319e56e0af92dd0c95d75797',
30 'thumbnail': 'md5:daa40b6b79249417c14ff8103db29639',
31 'uploader': 'Maybe Baby',
32 'uploader_id': '33628',
33 }
34 }, {
35 'url': 'https://andrewzimmern.substack.com/p/mussels-with-black-bean-sauce-recipe',
36 'md5': 'fd3c07077b02444ff0130715b5f632bb',
37 'info_dict': {
38 'id': '47368578',
39 'ext': 'mp4',
40 'title': 'Mussels with Black Bean Sauce: Recipe of the Week #7',
41 'description': 'md5:b96234a2906c7d854d5229818d889515',
42 'thumbnail': 'md5:e30bfaa9da40e82aa62354263a9dd232',
43 'uploader': "Andrew Zimmern's Spilled Milk ",
44 'uploader_id': '577659',
45 }
46 }]
47
48 @classmethod
bfd973ec 49 def _extract_embed_urls(cls, url, webpage):
612e31f5
E
50 if not re.search(r'<script[^>]+src=["\']https://substackcdn.com/[^"\']+\.js', webpage):
51 return
52
53 mobj = re.search(r'{[^}]*["\']subdomain["\']\s*:\s*["\'](?P<subdomain>[^"]+)', webpage)
54 if mobj:
55 parsed = urllib.parse.urlparse(url)
bfd973ec 56 yield parsed._replace(netloc=f'{mobj.group("subdomain")}.substack.com').geturl()
57 raise cls.StopExtraction()
612e31f5
E
58
59 def _extract_video_formats(self, video_id, username):
60 formats, subtitles = [], {}
61 for video_format in ('hls', 'mp4'):
62 video_url = f'https://{username}.substack.com/api/v1/video/upload/{video_id}/src?type={video_format}'
63
64 if video_format == 'hls':
65 fmts, subs = self._extract_m3u8_formats_and_subtitles(video_url, video_id, 'mp4', fatal=False)
66 formats.extend(fmts)
67 self._merge_subtitles(subs, target=subtitles)
68 else:
69 formats.append({
70 'url': video_url,
71 'ext': video_format,
72 })
73
74 return formats, subtitles
75
76 def _real_extract(self, url):
77 display_id, username = self._match_valid_url(url).group('id', 'username')
78 webpage = self._download_webpage(url, display_id)
79
80 webpage_info = self._search_json(r'<script[^>]*>\s*window\._preloads\s*=', webpage, 'preloads', display_id)
81
82 post_type = webpage_info['post']['type']
83 formats, subtitles = [], {}
84 if post_type == 'podcast':
85 formats, subtitles = [{'url': webpage_info['post']['podcast_url']}], {}
86 elif post_type == 'video':
87 formats, subtitles = self._extract_video_formats(webpage_info['post']['videoUpload']['id'], username)
88 else:
89 self.raise_no_formats(f'Page type "{post_type}" is not supported')
90
91 self._sort_formats(formats)
92 return {
93 'id': str(webpage_info['post']['id']),
94 'formats': formats,
95 'subtitles': subtitles,
96 'title': traverse_obj(webpage_info, ('post', 'title')),
97 'description': traverse_obj(webpage_info, ('post', 'description')),
98 'thumbnail': traverse_obj(webpage_info, ('post', 'cover_image')),
99 'uploader': traverse_obj(webpage_info, ('pub', 'name')),
100 'uploader_id': str_or_none(traverse_obj(webpage_info, ('post', 'publication_id'))),
101 }