youtube-dl/youtube_dl/extractor/dropbox.py

35 lines
1008 B
Python
Raw Normal View History

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
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 = {
'url': 'https://www.dropbox.com/s/nelirfsxnmcfbfh/youtube-dl%20test%20video%20%27%C3%A4%22BaW_jenozKc.mp4',
'md5': '8a3d905427a6951ccb9eb292f154530b',
2014-01-19 06:14:24 +01:00
'info_dict': {
'id': 'nelirfsxnmcfbfh',
2014-02-11 17:27:36 +01:00
'ext': 'mp4',
'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')
fn = compat_urllib_parse_unquote(mobj.group('title'))
title = os.path.splitext(fn)[0]
2014-01-19 06:14:24 +01:00
video_url = url + '?dl=1'
return {
'id': video_id,
'title': title,
'url': video_url,
}