diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-06-24 12:31:41 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-06-24 12:31:41 +0200 |
commit | 70d1924f8ba4d200ba43b0f1a1ea25d9e193c878 (patch) | |
tree | d0038ea685b8ee106693c41a40ff7a5ba3f749d5 /youtube_dl/extractor/vevo.py | |
parent | 7b4948b05fb236c2e6c0a27eafd408efbb00c5c6 (diff) |
Add VevoIE
Diffstat (limited to 'youtube_dl/extractor/vevo.py')
-rw-r--r-- | youtube_dl/extractor/vevo.py | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/youtube_dl/extractor/vevo.py b/youtube_dl/extractor/vevo.py new file mode 100644 index 000000000..7aa04ef68 --- /dev/null +++ b/youtube_dl/extractor/vevo.py @@ -0,0 +1,40 @@ +import re +import json + +from .common import InfoExtractor +from ..utils import ( + unified_strdate, + ExtractorError, +) + +class VevoIE(InfoExtractor): + _VALID_URL = r'http://www.vevo.com/watch/.*?/.*?/(?P<id>.*)$' + + def _real_extract(self, url): + mobj = re.match(self._VALID_URL, url) + video_id = mobj.group('id') + + json_url = 'http://www.vevo.com/data/video/%s' % video_id + base_url = 'http://smil.lvl3.vevo.com' + videos_url = '%s/Video/V2/VFILE/%s/%sr.smil' % (base_url, video_id, video_id.lower()) + info_json = self._download_webpage(json_url, video_id, u'Downloading json info') + links_webpage = self._download_webpage(videos_url, video_id, u'Downloading videos urls') + + self.report_extraction(video_id) + video_info = json.loads(info_json) + m_urls = list(re.finditer(r'<video src="(?P<ext>.*?):(?P<url>.*?)"', links_webpage)) + if m_urls is None or len(m_urls) == 0: + raise ExtractorError(u'Unable to extract video url') + # They are sorted from worst to best quality + m_url = m_urls[-1] + video_url = base_url + m_url.group('url') + ext = m_url.group('ext') + + return {'url': video_url, + 'ext': ext, + 'id': video_id, + 'title': video_info['title'], + 'thumbnail': video_info['img'], + 'upload_date': video_info['launchDate'].replace('/',''), + 'uploader': video_info['Artists'][0]['title'], + } |