diff options
author | tinybug <tinybug1991@gmail.com> | 2014-08-07 11:24:51 +0800 |
---|---|---|
committer | tinybug <tinybug1991@gmail.com> | 2014-08-07 11:24:51 +0800 |
commit | d42b2d2985f851078226e587fcdc8cdfd7cde435 (patch) | |
tree | e8c145c30459f47c63268856d518b0618140f1e9 | |
parent | cccfab64127df3bf8ffa8fd0f4acea786b9ea06a (diff) |
Update vube.py
fix extractor is broken #3459
-rw-r--r-- | youtube_dl/extractor/vube.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/youtube_dl/extractor/vube.py b/youtube_dl/extractor/vube.py index f1b9e9a19..109c4b459 100644 --- a/youtube_dl/extractor/vube.py +++ b/youtube_dl/extractor/vube.py @@ -71,12 +71,8 @@ class VubeIE(InfoExtractor): mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') - webpage = self._download_webpage(url, video_id) - data_json = self._search_regex( - r'(?s)window\["(?:tapiVideoData|vubeOriginalVideoData)"\]\s*=\s*(\{.*?\n});\n', - webpage, 'video data' - ) - data = json.loads(data_json) + json_url = 'http://vube.com/t-api/v1/video/%s?country=US&limit=120®ion=US' % video_id + data = self._download_json(json_url, video_id) video = ( data.get('video') or data) |