]> Raphaƫl G. Git Repositories - youtubedl/blobdiff - youtube_dl/extractor/spike.py
New upstream version 2019.06.08
[youtubedl] / youtube_dl / extractor / spike.py
index e76522b45d2e83f537b057cd9eb4d4b61f7bc403..21b93a5b3c7e4d2289ce3261f6c737b0f737001e 100644 (file)
@@ -44,3 +44,14 @@ class ParamountNetworkIE(MTVServicesInfoExtractor):
 
     _FEED_URL = 'http://www.paramountnetwork.com/feeds/mrss/'
     _GEO_COUNTRIES = ['US']
+
+    def _extract_mgid(self, webpage):
+        root_data = self._parse_json(self._search_regex(
+            r'window\.__DATA__\s*=\s*({.+})',
+            webpage, 'data'), None)
+
+        def find_sub_data(data, data_type):
+            return next(c for c in data['children'] if c.get('type') == data_type)
+
+        c = find_sub_data(find_sub_data(root_data, 'MainContainer'), 'VideoPlayer')
+        return c['props']['media']['video']['config']['uri']