1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-02 02:19:29 +00:00
youtube-dl/youtube_dl/extractor/auengine.py

51 lines
1.7 KiB
Python
Raw Normal View History

2014-01-07 09:04:48 +00:00
from __future__ import unicode_literals
2013-06-27 11:58:09 +00:00
import re
from .common import InfoExtractor
from ..compat import compat_urllib_parse
from ..utils import (
2013-11-18 12:56:45 +00:00
determine_ext,
ExtractorError,
)
2013-06-27 11:58:09 +00:00
2014-01-07 09:04:48 +00:00
class AUEngineIE(InfoExtractor):
2014-03-25 14:16:10 +00:00
_VALID_URL = r'http://(?:www\.)?auengine\.com/embed\.php\?.*?file=(?P<id>[^&]+).*?'
2013-07-03 14:36:36 +00:00
_TEST = {
2014-01-07 09:04:48 +00:00
'url': 'http://auengine.com/embed.php?file=lfvlytY6&w=650&h=370',
'md5': '48972bdbcf1a3a2f5533e62425b41d4f',
'info_dict': {
2014-03-25 14:16:10 +00:00
'id': 'lfvlytY6',
'ext': 'mp4',
2014-01-07 09:04:48 +00:00
'title': '[Commie]The Legend of the Legendary Heroes - 03 - Replication Eye (Alpha Stigma)[F9410F5A]'
2013-07-03 14:36:36 +00:00
}
}
2013-06-27 11:58:09 +00:00
def _real_extract(self, url):
2014-10-28 14:51:15 +00:00
video_id = self._match_id(url)
2014-03-25 14:16:10 +00:00
2013-06-27 11:58:09 +00:00
webpage = self._download_webpage(url, video_id)
2014-03-25 14:16:10 +00:00
title = self._html_search_regex(r'<title>(?P<title>.+?)</title>', webpage, 'title')
2013-06-27 11:58:09 +00:00
title = title.strip()
video_url = re.findall(r'http://\w+.auengine.com/vod/.*[^\W]', webpage)
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]
if video_url == "" and thumbnail =="":
2014-03-25 14:16:10 +00:00
raise ExtractorError('Could not find video URL')
2014-01-07 09:04:48 +00:00
ext = '.' + determine_ext(video_url)
2013-06-27 11:58:09 +00:00
if ext == title[-len(ext):]:
title = title[:-len(ext)]
2013-11-18 12:56:45 +00:00
return {
2014-03-25 14:16:10 +00:00
'id': video_id,
'url': video_url,
'title': title,
2013-06-27 11:58:09 +00:00
'thumbnail': thumbnail,
2014-03-25 14:53:26 +00:00
'http_referer': 'http://www.auengine.com/flowplayer/flowplayer.commercial-3.2.14.swf',
2013-11-18 12:56:45 +00:00
}