about summary refs log tree commit diff
path: root/youtube_dl/extractor/breakcom.py
blob: 34f555e891e1b6c1c079ef54ab976c53694b5daa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import re

from .common import InfoExtractor


class BreakIE(InfoExtractor):
    _VALID_URL = r'(?:http://)?(?:www\.)?break\.com/video/([^/]+)'
    _TEST = {
        u'url': u'http://www.break.com/video/when-girls-act-like-guys-2468056',
        u'file': u'2468056.mp4',
        u'md5': u'a3513fb1547fba4fb6cfac1bffc6c46b',
        u'info_dict': {
            u"title": u"When Girls Act Like D-Bags"
        }
    }

    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,
        }]