|
@ -16,7 +16,7 @@ class YourUploadIE(InfoExtractor): |
|
|
_TESTS = [ |
|
|
_TESTS = [ |
|
|
{ |
|
|
{ |
|
|
'url': 'http://yourupload.com/watch/14i14h', |
|
|
'url': 'http://yourupload.com/watch/14i14h', |
|
|
'md5': 'bf5c2f95c4c917536e80936af7bc51e1', |
|
|
|
|
|
|
|
|
'md5': '5e2c63385454c557f97c4c4131a393cd', |
|
|
'info_dict': { |
|
|
'info_dict': { |
|
|
'id': '14i14h', |
|
|
'id': '14i14h', |
|
|
'ext': 'mp4', |
|
|
'ext': 'mp4', |
|
@ -38,16 +38,16 @@ class YourUploadIE(InfoExtractor): |
|
|
mobj = re.match(self._VALID_URL, url) |
|
|
mobj = re.match(self._VALID_URL, url) |
|
|
video_id = mobj.group('id') |
|
|
video_id = mobj.group('id') |
|
|
|
|
|
|
|
|
url = 'http://embed.yucache.net/{0:}'.format(video_id) |
|
|
|
|
|
webpage = self._download_webpage(url, video_id) |
|
|
|
|
|
|
|
|
embed_url = 'http://embed.yucache.net/{0:}'.format(video_id) |
|
|
|
|
|
webpage = self._download_webpage(embed_url, video_id) |
|
|
|
|
|
|
|
|
title = self._og_search_title(webpage) |
|
|
title = self._og_search_title(webpage) |
|
|
thumbnail = self._og_search_thumbnail(webpage) |
|
|
thumbnail = self._og_search_thumbnail(webpage) |
|
|
url = self._og_search_video_url(webpage) |
|
|
|
|
|
|
|
|
video_url = self._og_search_video_url(webpage) |
|
|
|
|
|
|
|
|
formats = [{ |
|
|
formats = [{ |
|
|
'format_id': 'sd', |
|
|
'format_id': 'sd', |
|
|
'url': url, |
|
|
|
|
|
|
|
|
'url': video_url, |
|
|
}] |
|
|
}] |
|
|
|
|
|
|
|
|
return { |
|
|
return { |
|
@ -55,4 +55,7 @@ class YourUploadIE(InfoExtractor): |
|
|
'title': title, |
|
|
'title': title, |
|
|
'formats': formats, |
|
|
'formats': formats, |
|
|
'thumbnail': thumbnail, |
|
|
'thumbnail': thumbnail, |
|
|
|
|
|
'http_headers': { |
|
|
|
|
|
'Referer': embed_url, |
|
|
|
|
|
}, |
|
|
} |
|
|
} |