summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-02-23 12:20:58 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2014-02-23 12:20:58 +0100
commita25f2f990ab7a02902059daeea42d492f9d4f205 (patch)
tree627b77a8d201a7fbeef0ed4b8b6b4c2563ec361c
parent78b373975d21f9573c1b32c53aa3c05ab4a490f2 (diff)
downloadyoutube-dl-a25f2f990ab7a02902059daeea42d492f9d4f205.tar.gz
youtube-dl-a25f2f990ab7a02902059daeea42d492f9d4f205.tar.xz
youtube-dl-a25f2f990ab7a02902059daeea42d492f9d4f205.zip
[breakcom] Fix info json extraction
-rw-r--r--youtube_dl/extractor/breakcom.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/breakcom.py b/youtube_dl/extractor/breakcom.py
index 8ec6dda49..66b9190a9 100644
--- a/youtube_dl/extractor/breakcom.py
+++ b/youtube_dl/extractor/breakcom.py
@@ -23,8 +23,8 @@ class BreakIE(InfoExtractor):
         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 = ({.*?});', webpage,
-                                       'info json', flags=re.DOTALL)
+        info_json = self._search_regex(r'var embedVars = ({.*})\s*?</script>',
+            'webpage', 'info json', flags=re.DOTALL)
         info = json.loads(info_json)
         video_url = info['videoUri']
         m_youtube = re.search(r'(https?://www\.youtube\.com/watch\?v=.*)', video_url)