X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;ds=sidebyside;f=youtube_dl%2Fextractor%2Fauengine.py;h=bcccc0b7a54c8b03b84a3e1303672509577faa66;hb=c1d1facd06690bbffc7637be4ace62261b5b2552;hp=90dfa9a4694347c11fca5a91e60768ea4e0bc6e4;hpb=9906d397a05de3c89fb0ba2d60c284c16cb72581;p=youtube-dl diff --git a/youtube_dl/extractor/auengine.py b/youtube_dl/extractor/auengine.py index 90dfa9a46..bcccc0b7a 100644 --- a/youtube_dl/extractor/auengine.py +++ b/youtube_dl/extractor/auengine.py @@ -16,7 +16,7 @@ class AUEngineIE(InfoExtractor): u"title": u"[Commie]The Legend of the Legendary Heroes - 03 - Replication Eye (Alpha Stigma)[F9410F5A]" } } - _VALID_URL = r'(?:http://)?(?:www\.)?auengine\.com/embed.php\?.*?file=([^&]+).*?' + _VALID_URL = r'(?:http://)?(?:www\.)?auengine\.com/embed\.php\?.*?file=([^&]+).*?' def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) @@ -44,7 +44,6 @@ class AUEngineIE(InfoExtractor): return { 'id': video_id, 'url': video_url, - 'ext': ext, 'title': title, 'thumbnail': thumbnail, }