mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[yourupload] Fix extraction
This commit is contained in:
parent
ec7c1e85e0
commit
9d8ba307ef
1 changed files with 8 additions and 5 deletions
|
@ -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 @@ 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')
|
||||||
|
|
||||||
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 @@ def _real_extract(self, url):
|
||||||
'title': title,
|
'title': title,
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
'thumbnail': thumbnail,
|
'thumbnail': thumbnail,
|
||||||
|
'http_headers': {
|
||||||
|
'Referer': embed_url,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue