about summary refs log tree commit diff
path: root/youtube_dl/extractor/breakcom.py
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-06-23 22:59:51 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2013-06-23 22:59:51 +0200
commit825e0984e27f0c626c4d072066e0c9cae9069704 (patch)
tree8303cf6daffd8c3490f4d37d2e374415807354c8 /youtube_dl/extractor/breakcom.py
parentd1cade5adeae95654f164fd30a57efd316b888ee (diff)
parent9b5fffb14973bf35ede515a482d701f34343abd9 (diff)
downloadyoutube-dl-825e0984e27f0c626c4d072066e0c9cae9069704.tar.gz
youtube-dl-825e0984e27f0c626c4d072066e0c9cae9069704.tar.xz
youtube-dl-825e0984e27f0c626c4d072066e0c9cae9069704.zip
[break] adapt to new paths
Diffstat (limited to 'youtube_dl/extractor/breakcom.py')
-rw-r--r--youtube_dl/extractor/breakcom.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/youtube_dl/extractor/breakcom.py b/youtube_dl/extractor/breakcom.py
new file mode 100644
index 000000000..1f6620d91
--- /dev/null
+++ b/youtube_dl/extractor/breakcom.py
@@ -0,0 +1,25 @@
+import re
+
+from .common import InfoExtractor
+
+
+class BreakIE(InfoExtractor):
+    _VALID_URL = r'(?:http://)?(?:www\.)?break\.com/video/([^/]+)'
+
+    def _real_extract(self, url):
+        mobj = re.match(self._VALID_URL, url)
+        video_id = mobj.group(1).split("-")[-1]
+        webpage = self._download_webpage(url, video_id)
+        video_url = re.search(r"videoPath: '(.+?)',",webpage).group(1)
+        key = re.search(r"icon: '(.+?)',",webpage).group(1)
+        final_url = str(video_url)+"?"+str(key)
+        thumbnail_url = re.search(r"thumbnailURL: '(.+?)'",webpage).group(1)
+        title = re.search(r"sVidTitle: '(.+)',",webpage).group(1)
+        ext = video_url.split('.')[-1]
+        return [{
+            'id':        video_id,
+            'url':       final_url,
+            'ext':       ext,
+            'title':     title,
+            'thumbnail': thumbnail_url,
+        }]