diff options
Diffstat (limited to 'yt_dlp/extractor/medialaan.py')
-rw-r--r-- | yt_dlp/extractor/medialaan.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/medialaan.py b/yt_dlp/extractor/medialaan.py index 297f8c4b2..6daa50846 100644 --- a/yt_dlp/extractor/medialaan.py +++ b/yt_dlp/extractor/medialaan.py @@ -69,8 +69,8 @@ class MedialaanIE(InfoExtractor): 'only_matching': True, }] - @staticmethod - def _extract_urls(webpage): + @classmethod + def _extract_embed_urls(cls, url, webpage): entries = [] for element in re.findall(r'(<div[^>]+data-mychannels-type="video"[^>]*>)', webpage): mychannels_id = extract_attributes(element).get('data-mychannels-id') |