1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-28 14:49:35 +00:00

[yourupload] Fix extraction

This commit is contained in:
Yen Chi Hsuan 2015-04-29 04:03:07 +08:00
parent ec7c1e85e0
commit 9d8ba307ef

View file

@ -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) embed_url = 'http://embed.yucache.net/{0:}'.format(video_id)
webpage = self._download_webpage(url, 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,
},
} }