]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/auengine.py
1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
13 class AUEngineIE(InfoExtractor
):
14 _VALID_URL
= r
'http://(?:www\.)?auengine\.com/embed\.php\?.*?file=(?P<id>[^&]+).*?'
17 'url': 'http://auengine.com/embed.php?file=lfvlytY6&w=650&h=370',
18 'md5': '48972bdbcf1a3a2f5533e62425b41d4f',
22 'title': '[Commie]The Legend of the Legendary Heroes - 03 - Replication Eye (Alpha Stigma)[F9410F5A]'
26 def _real_extract(self
, url
):
27 video_id
= self
._match
_id
(url
)
29 webpage
= self
._download
_webpage
(url
, video_id
)
30 title
= self
._html
_search
_regex
(r
'<title>(?P<title>.+?)</title>', webpage
, 'title')
32 links
= re
.findall(r
'\s(?:file|url):\s*["\']([^
\'"]+)["\']', webpage)
33 links = map(compat_urllib_parse.unquote, links)
38 if link.endswith('.png
'):
40 elif '/videos
/' in link:
43 raise ExtractorError('Could
not find video URL
')
44 ext = '.' + determine_ext(video_url)
45 if ext == title[-len(ext):]:
46 title = title[:-len(ext)]
52 'thumbnail
': thumbnail,
53 'http_referer
': 'http
://www
.auengine
.com
/flowplayer
/flowplayer
.commercial
-3.2.14.swf
',