diff options
author | Sipherdrakon <64430430+Sipherdrakon@users.noreply.github.com> | 2021-08-29 17:50:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-30 03:20:58 +0530 |
commit | 54153fb71bb6846040823abd3ce3ff0eb96e5b44 (patch) | |
tree | 2c437a3b1fde43a7f08156817b8265c0e7dad46b /yt_dlp/extractor/nick.py | |
parent | 1dd6d9ca9d9d23525a4f00eb851d6e72ef52c4c7 (diff) | |
download | hypervideo-pre-54153fb71bb6846040823abd3ce3ff0eb96e5b44.tar.lz hypervideo-pre-54153fb71bb6846040823abd3ce3ff0eb96e5b44.tar.xz hypervideo-pre-54153fb71bb6846040823abd3ce3ff0eb96e5b44.zip |
[VH1,TVLand] Fix extractors (#784)
Fixes #745 but not #713
Authored by: Sipherdrakon
Diffstat (limited to 'yt_dlp/extractor/nick.py')
-rw-r--r-- | yt_dlp/extractor/nick.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/yt_dlp/extractor/nick.py b/yt_dlp/extractor/nick.py index 084538d71..ba7da7602 100644 --- a/yt_dlp/extractor/nick.py +++ b/yt_dlp/extractor/nick.py @@ -67,6 +67,7 @@ class NickIE(MTVServicesInfoExtractor): 'description': 'md5:9d65a66df38e02254852794b2809d1cf', 'title': 'Blue\'s Imagination Station', }, + 'skip': 'Not accessible?' }] def _get_feed_query(self, uri): @@ -75,10 +76,6 @@ class NickIE(MTVServicesInfoExtractor): 'mgid': uri, } - def _extract_mgid(self, webpage): - mgid = self._search_regex(r'"media":{"video":{"config":{"uri":"(mgid:.*?)"', webpage, 'mgid', default=None) - return mgid - def _real_extract(self, url): domain, video_type, display_id = self._match_valid_url(url).groups() if video_type.startswith("episodes"): |