youtube-dl/youtube_dl/extractor/dropbox.py

31 lines
796 B
Python
Raw Normal View History

2014-01-18 15:15:53 +00:00
# coding: utf-8
from __future__ import unicode_literals
import re
from .common import InfoExtractor
2014-01-19 05:14:24 +00:00
2014-01-19 04:50:26 +00:00
class DropboxIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?dropbox[.]com/s/(?P<id>[a-zA-Z0-9]{15})/(?P<title>[^?#]*)'
2014-01-18 15:15:53 +00:00
_TEST = {
2014-01-19 05:14:24 +00:00
'url': 'https://www.dropbox.com/s/mcnzehi9wo55th4/20131219_085616.mp4',
'file': 'mcnzehi9wo55th4.mp4',
'md5': '2cec58eb277054eca0dbaaf3bdc72564',
'info_dict': {
'title': '20131219_085616'
2014-01-19 04:50:26 +00:00
}
2014-01-18 15:15:53 +00:00
}
2014-01-19 05:14:24 +00:00
def _real_extract(self, url):
2014-01-18 15:15:53 +00:00
mobj = re.match(self._VALID_URL, url)
2014-01-19 05:14:24 +00:00
video_id = mobj.group('id')
title = mobj.group('title')
video_url = url + '?dl=1'
return {
'id': video_id,
'title': title,
'url': video_url,
}