diff options
author | pukkandan <pukkandan@gmail.com> | 2021-01-16 18:10:15 +0530 |
---|---|---|
committer | pukkandan <pukkandan@gmail.com> | 2021-01-16 18:50:48 +0530 |
commit | 30a074c2b666503eb1b09f06d7c7d8fcb1efd058 (patch) | |
tree | 5c575497417db5df51a8533ce41cb8bf0af5e746 /youtube_dlc/extractor/spike.py | |
parent | 7bc877a20d26ecc441f6ba949b80e361662f97e1 (diff) | |
download | hypervideo-pre-30a074c2b666503eb1b09f06d7c7d8fcb1efd058.tar.lz hypervideo-pre-30a074c2b666503eb1b09f06d7c7d8fcb1efd058.tar.xz hypervideo-pre-30a074c2b666503eb1b09f06d7c7d8fcb1efd058.zip |
Update to ytdl-2021.01.16
Diffstat (limited to 'youtube_dlc/extractor/spike.py')
-rw-r--r-- | youtube_dlc/extractor/spike.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/spike.py b/youtube_dlc/extractor/spike.py index 3cee331f6..4180e71ef 100644 --- a/youtube_dlc/extractor/spike.py +++ b/youtube_dlc/extractor/spike.py @@ -50,9 +50,15 @@ class ParamountNetworkIE(MTVServicesInfoExtractor): }, }] - _FEED_URL = 'http://www.paramountnetwork.com/feeds/mrss/' + _FEED_URL = 'http://feeds.mtvnservices.com/od/feed/intl-mrss-player-feed' _GEO_COUNTRIES = ['US'] + def _get_feed_query(self, uri): + return { + 'arcEp': 'paramountnetwork.com', + 'mgid': uri, + } + def _extract_mgid(self, webpage, url): root_data = self._parse_json(self._search_regex( r'window\.__DATA__\s*=\s*({.+})', |