aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/extractor/substack.py
diff options
context:
space:
mode:
Diffstat (limited to 'yt_dlp/extractor/substack.py')
-rw-r--r--yt_dlp/extractor/substack.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/yt_dlp/extractor/substack.py b/yt_dlp/extractor/substack.py
index 70cf10515..fa3826388 100644
--- a/yt_dlp/extractor/substack.py
+++ b/yt_dlp/extractor/substack.py
@@ -46,14 +46,15 @@ class SubstackIE(InfoExtractor):
}]
@classmethod
- def _extract_url(cls, webpage, url):
+ def _extract_embed_urls(cls, url, webpage):
if not re.search(r'<script[^>]+src=["\']https://substackcdn.com/[^"\']+\.js', webpage):
return
mobj = re.search(r'{[^}]*["\']subdomain["\']\s*:\s*["\'](?P<subdomain>[^"]+)', webpage)
if mobj:
parsed = urllib.parse.urlparse(url)
- return parsed._replace(netloc=f'{mobj.group("subdomain")}.substack.com').geturl()
+ yield parsed._replace(netloc=f'{mobj.group("subdomain")}.substack.com').geturl()
+ raise cls.StopExtraction()
def _extract_video_formats(self, video_id, username):
formats, subtitles = [], {}
@@ -87,7 +88,6 @@ class SubstackIE(InfoExtractor):
else:
self.raise_no_formats(f'Page type "{post_type}" is not supported')
- self._sort_formats(formats)
return {
'id': str(webpage_info['post']['id']),
'formats': formats,