X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fdropbox.py;h=d74981eead1db6cf8b41b4473c36d7a736169c5e;hb=4a9540b6d23ce247e13d74ce1f16f0aed238e08b;hp=e4d60d17af353a3e300c16185e740f15ad31b511;hpb=704519c7e386037eeda1ba727e0d31558be4d3dc;p=youtube-dl diff --git a/youtube_dl/extractor/dropbox.py b/youtube_dl/extractor/dropbox.py index e4d60d17a..d74981eea 100644 --- a/youtube_dl/extractor/dropbox.py +++ b/youtube_dl/extractor/dropbox.py @@ -1,32 +1,31 @@ # coding: utf-8 from __future__ import unicode_literals +import os.path import re from .common import InfoExtractor + class DropboxIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?dropbox[.]com/s/(?P[a-zA-Z0-9]{15})/(?P[^?#]*)' _TEST = { - u'url': u'https://www.dropbox.com/s/mcnzehi9wo55th4/20131219_085616.mp4', - u'file': u'mcnzehi9wo55th4.mp4', - u'md5': u'2cec58eb277054eca0dbaaf3bdc72564', - u'info_dict': { - u'title': '20131219_085616' + 'url': 'https://www.dropbox.com/s/mcnzehi9wo55th4/20131219_085616.mp4', + 'file': 'mcnzehi9wo55th4.mp4', + 'md5': 'f6d65b1b326e82fd7ab7720bea3dacae', + 'info_dict': { + 'title': '20131219_085616' } } - - - def _real_extract(self,url): + + def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) - video_id=mobj.group('id') - title=mobj.group('title') - webpage = self._download_webpage(url, video_id) - video_url=url+'?dl=1' - return{ - 'id':video_id, - 'title':title, - 'url':video_url - - } - \ No newline at end of file + video_id = mobj.group('id') + title = os.path.splitext(mobj.group('title'))[0] + video_url = url + '?dl=1' + + return { + 'id': video_id, + 'title': title, + 'url': video_url, + }