2014-01-18 16:15:53 +01:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2014-01-19 06:16:40 +01:00
|
|
|
import os.path
|
2014-01-18 16:15:53 +01:00
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-07-21 13:55:47 +02:00
|
|
|
from ..utils import compat_urllib_parse_unquote
|
2014-01-18 16:15:53 +01:00
|
|
|
|
2014-01-19 06:14:24 +01:00
|
|
|
|
2014-01-19 05:50:26 +01:00
|
|
|
class DropboxIE(InfoExtractor):
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?dropbox[.]com/s/(?P<id>[a-zA-Z0-9]{15})/(?P<title>[^?#]*)'
|
2014-01-18 16:15:53 +01:00
|
|
|
_TEST = {
|
2014-08-28 14:00:55 +02:00
|
|
|
'url': 'https://www.dropbox.com/s/nelirfsxnmcfbfh/youtube-dl%20test%20video%20%27%C3%A4%22BaW_jenozKc.mp4?dl=0',
|
2014-01-19 06:14:24 +01:00
|
|
|
'info_dict': {
|
2014-07-21 12:57:40 +02:00
|
|
|
'id': 'nelirfsxnmcfbfh',
|
2014-02-11 17:27:36 +01:00
|
|
|
'ext': 'mp4',
|
2014-07-21 12:57:40 +02:00
|
|
|
'title': 'youtube-dl test video \'ä"BaW_jenozKc'
|
2014-01-19 05:50:26 +01:00
|
|
|
}
|
2014-01-18 16:15:53 +01:00
|
|
|
}
|
2014-01-19 06:14:24 +01:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2014-01-18 16:15:53 +01:00
|
|
|
mobj = re.match(self._VALID_URL, url)
|
2014-01-19 06:14:24 +01:00
|
|
|
video_id = mobj.group('id')
|
2014-07-21 13:55:47 +02:00
|
|
|
fn = compat_urllib_parse_unquote(mobj.group('title'))
|
2014-07-21 12:57:40 +02:00
|
|
|
title = os.path.splitext(fn)[0]
|
2014-08-28 14:00:55 +02:00
|
|
|
video_url = (
|
|
|
|
re.sub(r'[?&]dl=0', '', url) +
|
|
|
|
('?' if '?' in url else '&') + 'dl=1')
|
2014-01-19 06:14:24 +01:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
|
|
|
'url': video_url,
|
|
|
|
}
|