X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fdropbox.py;h=41208c97691aafc1c2c96ed06d4a326bca8886a6;hb=91a76c40c06ce8ac66f4faa951176b691c3b1f90;hp=d74981eead1db6cf8b41b4473c36d7a736169c5e;hpb=50317b111dadccba73bcdd828d9997d1da78a5f1;p=youtube-dl diff --git a/youtube_dl/extractor/dropbox.py b/youtube_dl/extractor/dropbox.py index d74981eea..41208c976 100644 --- a/youtube_dl/extractor/dropbox.py +++ b/youtube_dl/extractor/dropbox.py @@ -10,11 +10,12 @@ from .common import InfoExtractor class DropboxIE(InfoExtractor): _VALID_URL = r'https?://(?:www\.)?dropbox[.]com/s/(?P[a-zA-Z0-9]{15})/(?P[^?#]*)' _TEST = { - 'url': 'https://www.dropbox.com/s/mcnzehi9wo55th4/20131219_085616.mp4', - 'file': 'mcnzehi9wo55th4.mp4', - 'md5': 'f6d65b1b326e82fd7ab7720bea3dacae', + 'url': 'https://www.dropbox.com/s/0qr9sai2veej4f8/THE_DOCTOR_GAMES.mp4', + 'md5': '8ae17c51172fb7f93bdd6a214cc8c896', 'info_dict': { - 'title': '20131219_085616' + 'id': '0qr9sai2veej4f8', + 'ext': 'mp4', + 'title': 'THE_DOCTOR_GAMES' } }