about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M <dstftw@gmail.com>2015-12-23 01:05:54 +0600
committerSergey M <dstftw@gmail.com>2015-12-23 01:05:54 +0600
commit11208ebbf164dd6335581ccbdab30a7bb4af63d6 (patch)
tree2a7cc369e214262a2465387ad88b456565eacf0b
parent774ce35571c08a1532fe4079224239adfdb80e43 (diff)
parented63cbd6ee392a01d10f0ca3f36ac9442622f0a9 (diff)
downloadyoutube-dl-11208ebbf164dd6335581ccbdab30a7bb4af63d6.tar.gz
youtube-dl-11208ebbf164dd6335581ccbdab30a7bb4af63d6.tar.xz
youtube-dl-11208ebbf164dd6335581ccbdab30a7bb4af63d6.zip
Merge pull request #7942 from ausbin/comcarcoff-json-fix
[comcarcoff] adjust for json updates
-rw-r--r--youtube_dl/extractor/comcarcoff.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/comcarcoff.py b/youtube_dl/extractor/comcarcoff.py
index 81f3d7697..4391b7ce4 100644
--- a/youtube_dl/extractor/comcarcoff.py
+++ b/youtube_dl/extractor/comcarcoff.py
@@ -32,8 +32,8 @@ class ComCarCoffIE(InfoExtractor):
         webpage = self._download_webpage(url, display_id)
 
         full_data = json.loads(self._search_regex(
-            r'<script type="application/json" id="videoData">(?P<json>.+?)</script>',
-            webpage, 'full data json'))
+            r'\nwindow.app = (?P<json>.+?);\n',
+            webpage, 'full data json'))['videoData']
 
         video_id = full_data['activeVideo']['video']
         video_data = full_data.get('videos', {}).get(video_id) or full_data['singleshots'][video_id]