]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/auengine.py
Add an extractor for orf.at (closes #1346)
[yt-dlp.git] / youtube_dl / extractor / auengine.py
CommitLineData
62008f69
AK
1import os.path
2import re
62008f69
AK
3
4from .common import InfoExtractor
e4decf27
AK
5from ..utils import (
6 compat_urllib_parse,
7 compat_urllib_parse_urlparse,
8)
62008f69 9
d798e1c7 10class AUEngineIE(InfoExtractor):
5d2eac9e
PH
11 _TEST = {
12 u'url': u'http://auengine.com/embed.php?file=lfvlytY6&w=650&h=370',
13 u'file': u'lfvlytY6.mp4',
14 u'md5': u'48972bdbcf1a3a2f5533e62425b41d4f',
15 u'info_dict': {
16 u"title": u"[Commie]The Legend of the Legendary Heroes - 03 - Replication Eye (Alpha Stigma)[F9410F5A]"
17 }
18 }
62008f69
AK
19 _VALID_URL = r'(?:http://)?(?:www\.)?auengine\.com/embed.php\?.*?file=([^&]+).*?'
20
21 def _real_extract(self, url):
22 mobj = re.match(self._VALID_URL, url)
23 video_id = mobj.group(1)
24 webpage = self._download_webpage(url, video_id)
25 title = self._html_search_regex(r'<title>(?P<title>.+?)</title>',
26 webpage, u'title')
27 title = title.strip()
28 links = re.findall(r'[^A-Za-z0-9]?(?:file|url):\s*["\'](http[^\'"&]*)', webpage)
e4decf27 29 links = [compat_urllib_parse.unquote(l) for l in links]
62008f69 30 for link in links:
e4decf27 31 root, pathext = os.path.splitext(compat_urllib_parse_urlparse(link).path)
62008f69
AK
32 if pathext == '.png':
33 thumbnail = link
34 elif pathext == '.mp4':
35 url = link
36 ext = pathext
37 if ext == title[-len(ext):]:
38 title = title[:-len(ext)]
39 ext = ext[1:]
40 return [{
41 'id': video_id,
42 'url': url,
43 'ext': ext,
44 'title': title,
45 'thumbnail': thumbnail,
46 }]