yt-dlc/youtube_dl/extractor/auengine.py

51 lines
1.6 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,
2015-01-05 17:21:32 +00:00
remove_end,
)
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)
2015-01-05 17:21:32 +00:00
title = self._html_search_regex(
r'<title>\s*(?P<title>.+?)\s*</title>', webpage, 'title')
video_urls = re.findall(r'http://\w+.auengine.com/vod/.*[^\W]', webpage)
video_url = compat_urllib_parse.unquote(video_urls[0])
thumbnails = re.findall(r'http://\w+.auengine.com/thumb/.*[^\W]', webpage)
thumbnail = compat_urllib_parse.unquote(thumbnails[0])
if not video_url:
2014-03-25 14:16:10 +00:00
raise ExtractorError('Could not find video URL')
2015-01-05 17:21:32 +00:00
2014-01-07 09:04:48 +00:00
ext = '.' + determine_ext(video_url)
2015-01-05 17:21:32 +00:00
title = remove_end(title, 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
}