about summary refs log tree commit diff
path: root/youtube_dl/extractor/breakcom.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-10-03 18:57:18 +0700
committerSergey M․ <dstftw@gmail.com>2014-10-03 18:57:18 +0700
commitf78c01f68b1e16e385ec319c7f5d351b173c7ec5 (patch)
treec702f12f825fb7f7a07eceba09c1e6ff58345228 /youtube_dl/extractor/breakcom.py
parent8489578df42620a4e60fa233458520986b510105 (diff)
downloadyoutube-dl-f78c01f68b1e16e385ec319c7f5d351b173c7ec5.tar.gz
youtube-dl-f78c01f68b1e16e385ec319c7f5d351b173c7ec5.tar.xz
youtube-dl-f78c01f68b1e16e385ec319c7f5d351b173c7ec5.zip
[breakcom] Cover more URLs with _VALID_URL (Closes #3876)
Diffstat (limited to 'youtube_dl/extractor/breakcom.py')
-rw-r--r--youtube_dl/extractor/breakcom.py24
1 files changed, 13 insertions, 11 deletions
diff --git a/youtube_dl/extractor/breakcom.py b/youtube_dl/extractor/breakcom.py
index 1bfc9f35b..9b0aa2b1b 100644
--- a/youtube_dl/extractor/breakcom.py
+++ b/youtube_dl/extractor/breakcom.py
@@ -7,25 +7,27 @@ from .common import InfoExtractor
 
 
 class BreakIE(InfoExtractor):
-    _VALID_URL = r'http://(?:www\.)?break\.com/video/([^/]+)'
-    _TEST = {
+    _VALID_URL = r'http://(?:www\.)?break\.com/video/(?:[^/]+/)*.+-(?P<id>\d+)'
+    _TESTS = [{
         'url': 'http://www.break.com/video/when-girls-act-like-guys-2468056',
-        'md5': 'a3513fb1547fba4fb6cfac1bffc6c46b',
+        'md5': '33aa4ff477ecd124d18d7b5d23b87ce5',
         'info_dict': {
             'id': '2468056',
             'ext': 'mp4',
             'title': 'When Girls Act Like D-Bags',
         }
-    }
+    }, {
+        'url': 'http://www.break.com/video/ugc/baby-flex-2773063',
+        'only_matching': True,
+    }]
 
     def _real_extract(self, url):
-        mobj = re.match(self._VALID_URL, url)
-        video_id = mobj.group(1).split("-")[-1]
-        embed_url = 'http://www.break.com/embed/%s' % video_id
-        webpage = self._download_webpage(embed_url, video_id)
-        info_json = self._search_regex(r'var embedVars = ({.*})\s*?</script>',
-            webpage, 'info json', flags=re.DOTALL)
-        info = json.loads(info_json)
+        video_id = self._match_id(url)
+        webpage = self._download_webpage(
+            'http://www.break.com/embed/%s' % video_id, video_id)
+        info = json.loads(self._search_regex(
+            r'var embedVars = ({.*})\s*?</script>',
+            webpage, 'info json', flags=re.DOTALL))
         video_url = info['videoUri']
         youtube_id = info.get('youtubeId')
         if youtube_id: