diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-08-28 14:00:55 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-08-28 14:00:55 +0200 |
commit | b94744d157c679f75a7cc74cd6ca736351627964 (patch) | |
tree | efa68f9ac55ec6bc4d35032d52b3d0b9292f6ed3 /youtube_dl/extractor | |
parent | 753727cdedfbafa90884f88fa44d45b3ebdc9cfa (diff) |
[dropbox] Make sure ?dl=0 is ignore (Fixes #3605)
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/dropbox.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/youtube_dl/extractor/dropbox.py b/youtube_dl/extractor/dropbox.py index 9f569aa93..1e1763abf 100644 --- a/youtube_dl/extractor/dropbox.py +++ b/youtube_dl/extractor/dropbox.py @@ -11,8 +11,7 @@ from ..utils import compat_urllib_parse_unquote class DropboxIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?dropbox[.]com/s/(?P<id>[a-zA-Z0-9]{15})/(?P<title>[^?#]*)' _TEST = { - 'url': 'https://www.dropbox.com/s/nelirfsxnmcfbfh/youtube-dl%20test%20video%20%27%C3%A4%22BaW_jenozKc.mp4', - 'md5': '8a3d905427a6951ccb9eb292f154530b', + 'url': 'https://www.dropbox.com/s/nelirfsxnmcfbfh/youtube-dl%20test%20video%20%27%C3%A4%22BaW_jenozKc.mp4?dl=0', 'info_dict': { 'id': 'nelirfsxnmcfbfh', 'ext': 'mp4', @@ -25,7 +24,9 @@ class DropboxIE(InfoExtractor): video_id = mobj.group('id') fn = compat_urllib_parse_unquote(mobj.group('title')) title = os.path.splitext(fn)[0] - video_url = url + '?dl=1' + video_url = ( + re.sub(r'[?&]dl=0', '', url) + + ('?' if '?' in url else '&') + 'dl=1') return { 'id': video_id, |