mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 08:19:57 +01:00
[dropbox] Correct test case (#2171)
This commit is contained in:
parent
ce4e242a6f
commit
4cf393bb4b
@ -1,6 +1,7 @@
|
|||||||
# coding: utf-8
|
# coding: utf-8
|
||||||
from __future__ import unicode_literals
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
import os.path
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
@ -11,7 +12,7 @@ class DropboxIE(InfoExtractor):
|
|||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'https://www.dropbox.com/s/mcnzehi9wo55th4/20131219_085616.mp4',
|
'url': 'https://www.dropbox.com/s/mcnzehi9wo55th4/20131219_085616.mp4',
|
||||||
'file': 'mcnzehi9wo55th4.mp4',
|
'file': 'mcnzehi9wo55th4.mp4',
|
||||||
'md5': '2cec58eb277054eca0dbaaf3bdc72564',
|
'md5': 'f6d65b1b326e82fd7ab7720bea3dacae',
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'title': '20131219_085616'
|
'title': '20131219_085616'
|
||||||
}
|
}
|
||||||
@ -20,7 +21,7 @@ class DropboxIE(InfoExtractor):
|
|||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
video_id = mobj.group('id')
|
video_id = mobj.group('id')
|
||||||
title = mobj.group('title')
|
title = os.path.splitext(mobj.group('title'))[0]
|
||||||
video_url = url + '?dl=1'
|
video_url = url + '?dl=1'
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user