projects
/
youtube-dl
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
85cd69a
)
[spike] fix Paramount Network extraction(closes #17677)
author
Remita Amine
<remitamine@gmail.com>
Fri, 28 Sep 2018 14:13:25 +0000
(15:13 +0100)
committer
Remita Amine
<remitamine@gmail.com>
Fri, 28 Sep 2018 14:13:25 +0000
(15:13 +0100)
youtube_dl/extractor/spike.py
patch
|
blob
|
history
diff --git
a/youtube_dl/extractor/spike.py
b/youtube_dl/extractor/spike.py
index e76522b45d2e83f537b057cd9eb4d4b61f7bc403..6090e00662b5517bad5442576c375ad07590a384 100644
(file)
--- a/
youtube_dl/extractor/spike.py
+++ b/
youtube_dl/extractor/spike.py
@@
-44,3
+44,10
@@
class ParamountNetworkIE(MTVServicesInfoExtractor):
_FEED_URL = 'http://www.paramountnetwork.com/feeds/mrss/'
_GEO_COUNTRIES = ['US']
+
+ def _extract_mgid(self, webpage):
+ cs = self._parse_json(self._search_regex(
+ r'window\.__DATA__\s*=\s*({.+})',
+ webpage, 'data'), None)['children']
+ c = next(c for c in cs if c.get('type') == 'VideoPlayer')
+ return c['props']['media']['video']['config']['uri']