diff options
Diffstat (limited to 'yt_dlp/extractor/sendtonews.py')
-rw-r--r-- | yt_dlp/extractor/sendtonews.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/sendtonews.py b/yt_dlp/extractor/sendtonews.py index cf4b93d45..5ff06f19d 100644 --- a/yt_dlp/extractor/sendtonews.py +++ b/yt_dlp/extractor/sendtonews.py @@ -43,14 +43,14 @@ class SendtoNewsIE(InfoExtractor): _URL_TEMPLATE = '//embed.sendtonews.com/player2/embedplayer.php?SC=%s' @classmethod - def _extract_url(cls, webpage): + def _extract_embed_urls(cls, url, webpage): mobj = re.search(r'''(?x)<script[^>]+src=([\'"]) (?:https?:)?//embed\.sendtonews\.com/player/responsiveembed\.php\? .*\bSC=(?P<SC>[0-9a-zA-Z-]+).* \1>''', webpage) if mobj: sc = mobj.group('SC') - return cls._URL_TEMPLATE % sc + yield cls._URL_TEMPLATE % sc def _real_extract(self, url): playlist_id = self._match_id(url) |