about summary refs log tree commit diff
path: root/youtube_dl/extractor/ninenow.py
diff options
context:
space:
mode:
authorScott Leggett <scott@sl.id.au>2016-09-05 22:41:08 +1000
committerSergey M․ <dstftw@gmail.com>2016-09-11 00:16:29 +0700
commit732424375017a033f5b398b0f3dc2c6d47f3d3fd (patch)
tree2cc4fd47a9ecb5891ad089d00abf4eeff003b618 /youtube_dl/extractor/ninenow.py
parent84a18e9b908eb0b770f03603200026a06f4f08b4 (diff)
downloadyoutube-dl-732424375017a033f5b398b0f3dc2c6d47f3d3fd.tar.gz
youtube-dl-732424375017a033f5b398b0f3dc2c6d47f3d3fd.tar.xz
youtube-dl-732424375017a033f5b398b0f3dc2c6d47f3d3fd.zip
[9now] Fix extraction
Diffstat (limited to 'youtube_dl/extractor/ninenow.py')
-rw-r--r--youtube_dl/extractor/ninenow.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ninenow.py b/youtube_dl/extractor/ninenow.py
index faa577237..907b42609 100644
--- a/youtube_dl/extractor/ninenow.py
+++ b/youtube_dl/extractor/ninenow.py
@@ -44,7 +44,14 @@ class NineNowIE(InfoExtractor):
         page_data = self._parse_json(self._search_regex(
             r'window\.__data\s*=\s*({.*?});', webpage,
             'page data'), display_id)
-        common_data = page_data.get('episode', {}).get('episode') or page_data.get('clip', {}).get('clip')
+        current_key = (
+            page_data.get('episode', {}).get('currentEpisodeKey') or
+            page_data.get('clip', {}).get('currentClipKey')
+        )
+        common_data = (
+            page_data.get('episode', {}).get('episodeCache', {}).get(current_key, {}).get('episode') or
+            page_data.get('clip', {}).get('clipCache', {}).get(current_key, {}).get('clip')
+        )
         video_data = common_data['video']
 
         if video_data.get('drm'):