From d42b2d2985f851078226e587fcdc8cdfd7cde435 Mon Sep 17 00:00:00 2001
From: tinybug <tinybug1991@gmail.com>
Date: Thu, 7 Aug 2014 11:24:51 +0800
Subject: [PATCH] Update vube.py

fix extractor is broken #3459
---
 youtube_dl/extractor/vube.py | 8 ++------
 1 file 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&region=US' % video_id
+        data = self._download_json(json_url, video_id)
         video = (
             data.get('video') or
             data)