mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
[Auengine] corrected extractions logic
The way the video download url was been extracted was not working well so i change it for it to extract the correct url
This commit is contained in:
parent
a285b6377b
commit
03ff2cc1c4
2 changed files with 8 additions and 10 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -31,3 +31,5 @@ updates_key.pem
|
||||||
test/testdata
|
test/testdata
|
||||||
.tox
|
.tox
|
||||||
youtube-dl.zsh
|
youtube-dl.zsh
|
||||||
|
.idea
|
||||||
|
.idea/*
|
|
@ -29,17 +29,12 @@ def _real_extract(self, url):
|
||||||
webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
title = self._html_search_regex(r'<title>(?P<title>.+?)</title>', webpage, 'title')
|
title = self._html_search_regex(r'<title>(?P<title>.+?)</title>', webpage, 'title')
|
||||||
title = title.strip()
|
title = title.strip()
|
||||||
links = re.findall(r'\s(?:file|url):\s*["\']([^\'"]+)["\']', webpage)
|
video_url = re.findall(r'http://\w+.auengine.com/vod/.*[^\W]', webpage)
|
||||||
links = map(compat_urllib_parse.unquote, links)
|
video_url = map(compat_urllib_parse.unquote, video_url)[0]
|
||||||
|
thumbnail = re.findall(r'http://\w+.auengine.com/thumb/.*[^\W]', webpage)
|
||||||
|
thumbnail = map(compat_urllib_parse.unquote, thumbnail)[0]
|
||||||
|
|
||||||
thumbnail = None
|
if video_url == "" and thumbnail =="":
|
||||||
video_url = None
|
|
||||||
for link in links:
|
|
||||||
if link.endswith('.png'):
|
|
||||||
thumbnail = link
|
|
||||||
elif '/videos/' in link:
|
|
||||||
video_url = link
|
|
||||||
if not video_url:
|
|
||||||
raise ExtractorError('Could not find video URL')
|
raise ExtractorError('Could not find video URL')
|
||||||
ext = '.' + determine_ext(video_url)
|
ext = '.' + determine_ext(video_url)
|
||||||
if ext == title[-len(ext):]:
|
if ext == title[-len(ext):]:
|
||||||
|
@ -52,3 +47,4 @@ def _real_extract(self, url):
|
||||||
'thumbnail': thumbnail,
|
'thumbnail': thumbnail,
|
||||||
'http_referer': 'http://www.auengine.com/flowplayer/flowplayer.commercial-3.2.14.swf',
|
'http_referer': 'http://www.auengine.com/flowplayer/flowplayer.commercial-3.2.14.swf',
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue