1
0
Fork 0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-01-18 23:03:05 +01:00
yt-dlp/youtube_dl/extractor/dropbox.py

32 lines
893 B
Python
Raw Normal View History

2014-01-18 20:45:53 +05:30
# coding: utf-8
from __future__ import unicode_literals
import re
from .common import InfoExtractor
2014-01-19 10:20:26 +05:30
class DropboxIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?dropbox[.]com/s/(?P<id>[a-zA-Z0-9]{15})/(?P<title>[^?#]*)'
2014-01-18 20:45:53 +05:30
_TEST = {
2014-01-19 10:20:26 +05:30
u'url': u'https://www.dropbox.com/s/mcnzehi9wo55th4/20131219_085616.mp4',
u'file': u'mcnzehi9wo55th4.mp4',
u'md5': u'2cec58eb277054eca0dbaaf3bdc72564',
u'info_dict': {
u'title': '20131219_085616'
}
2014-01-18 20:45:53 +05:30
}
def _real_extract(self,url):
mobj = re.match(self._VALID_URL, url)
video_id=mobj.group('id')
title=mobj.group('title')
webpage = self._download_webpage(url, video_id)
video_url=url+'?dl=1'
return{
'id':video_id,
'title':title,
2014-01-19 10:20:26 +05:30
'url':video_url
2014-01-18 20:45:53 +05:30
}