2014-01-18 15:15:53 +00:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2014-01-19 05:16:40 +00:00
|
|
|
import os.path
|
2014-01-18 15:15:53 +00:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-07-21 11:55:47 +00:00
|
|
|
from ..utils import compat_urllib_parse_unquote
|
2014-01-18 15:15:53 +00:00
|
|
|
|
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-07-21 10:57:40 +00:00
|
|
|
'url': 'https://www.dropbox.com/s/nelirfsxnmcfbfh/youtube-dl%20test%20video%20%27%C3%A4%22BaW_jenozKc.mp4',
|
|
|
|
'md5': '8a3d905427a6951ccb9eb292f154530b',
|
2014-01-19 05:14:24 +00:00
|
|
|
'info_dict': {
|
2014-07-21 10:57:40 +00:00
|
|
|
'id': 'nelirfsxnmcfbfh',
|
2014-02-11 16:27:36 +00:00
|
|
|
'ext': 'mp4',
|
2014-07-21 10:57:40 +00:00
|
|
|
'title': 'youtube-dl test video \'ä"BaW_jenozKc'
|
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')
|
2014-07-21 11:55:47 +00:00
|
|
|
fn = compat_urllib_parse_unquote(mobj.group('title'))
|
2014-07-21 10:57:40 +00:00
|
|
|
title = os.path.splitext(fn)[0]
|
2014-01-19 05:14:24 +00:00
|
|
|
video_url = url + '?dl=1'
|
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
|
|
|
'url': video_url,
|
|
|
|
}
|