2014-03-22 03:13:46 +09:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2016-03-04 18:25:16 +09:00
|
|
|
import re
|
|
|
|
|
2014-03-22 03:13:46 +09:00
|
|
|
from .common import InfoExtractor
|
2014-12-13 19:02:24 +09:00
|
|
|
from ..compat import (
|
2015-10-11 00:51:37 +09:00
|
|
|
compat_parse_qs,
|
2016-03-26 04:46:57 +09:00
|
|
|
compat_urllib_parse_urlencode,
|
2015-10-11 00:51:37 +09:00
|
|
|
compat_urllib_parse_urlparse,
|
|
|
|
compat_urlparse,
|
2014-12-13 19:02:24 +09:00
|
|
|
)
|
|
|
|
from ..utils import (
|
2014-04-29 21:57:38 +09:00
|
|
|
ExtractorError,
|
2015-10-11 00:51:37 +09:00
|
|
|
parse_duration,
|
|
|
|
replace_extension,
|
2014-03-22 03:13:46 +09:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class FiveMinIE(InfoExtractor):
|
|
|
|
IE_NAME = '5min'
|
2016-03-04 18:25:16 +09:00
|
|
|
_VALID_URL = r'(?:5min:(?P<id>\d+)(?::(?P<sid>\d+))?|https?://[^/]*?5min\.com/Scripts/PlayerSeed\.js\?(?P<query>.*))'
|
2014-03-22 03:13:46 +09:00
|
|
|
|
2014-04-15 23:18:37 +09:00
|
|
|
_TESTS = [
|
|
|
|
{
|
|
|
|
# From http://www.engadget.com/2013/11/15/ipad-mini-retina-display-review/
|
|
|
|
'url': 'http://pshared.5min.com/Scripts/PlayerSeed.js?sid=281&width=560&height=345&playList=518013791',
|
|
|
|
'md5': '4f7b0b79bf1a470e5004f7112385941d',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '518013791',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'iPad Mini with Retina Display Review',
|
2015-10-11 00:51:37 +09:00
|
|
|
'duration': 177,
|
2014-04-15 23:18:37 +09:00
|
|
|
},
|
2014-03-22 03:13:46 +09:00
|
|
|
},
|
2014-04-15 23:18:37 +09:00
|
|
|
{
|
|
|
|
# From http://on.aol.com/video/how-to-make-a-next-level-fruit-salad-518086247
|
|
|
|
'url': '5min:518086247',
|
|
|
|
'md5': 'e539a9dd682c288ef5a498898009f69e',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '518086247',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'How to Make a Next-Level Fruit Salad',
|
2015-10-11 00:51:37 +09:00
|
|
|
'duration': 184,
|
2014-04-15 23:18:37 +09:00
|
|
|
},
|
2016-03-04 18:25:16 +09:00
|
|
|
'skip': 'no longer available',
|
2014-04-15 23:18:37 +09:00
|
|
|
},
|
|
|
|
]
|
2015-10-11 00:51:37 +09:00
|
|
|
_ERRORS = {
|
|
|
|
'ErrorVideoNotExist': 'We\'re sorry, but the video you are trying to watch does not exist.',
|
|
|
|
'ErrorVideoNoLongerAvailable': 'We\'re sorry, but the video you are trying to watch is no longer available.',
|
|
|
|
'ErrorVideoRejected': 'We\'re sorry, but the video you are trying to watch has been removed.',
|
|
|
|
'ErrorVideoUserNotGeo': 'We\'re sorry, but the video you are trying to watch cannot be viewed from your current location.',
|
|
|
|
'ErrorVideoLibraryRestriction': 'We\'re sorry, but the video you are trying to watch is currently unavailable for viewing at this domain.',
|
|
|
|
'ErrorExposurePermission': 'We\'re sorry, but the video you are trying to watch is currently unavailable for viewing at this domain.',
|
|
|
|
}
|
|
|
|
_QUALITIES = {
|
|
|
|
1: {
|
|
|
|
'width': 640,
|
|
|
|
'height': 360,
|
|
|
|
},
|
|
|
|
2: {
|
|
|
|
'width': 854,
|
|
|
|
'height': 480,
|
|
|
|
},
|
|
|
|
4: {
|
|
|
|
'width': 1280,
|
|
|
|
'height': 720,
|
|
|
|
},
|
|
|
|
8: {
|
|
|
|
'width': 1920,
|
|
|
|
'height': 1080,
|
|
|
|
},
|
|
|
|
16: {
|
|
|
|
'width': 640,
|
|
|
|
'height': 360,
|
|
|
|
},
|
|
|
|
32: {
|
|
|
|
'width': 854,
|
|
|
|
'height': 480,
|
|
|
|
},
|
|
|
|
64: {
|
|
|
|
'width': 1280,
|
|
|
|
'height': 720,
|
|
|
|
},
|
|
|
|
128: {
|
|
|
|
'width': 640,
|
|
|
|
'height': 360,
|
|
|
|
},
|
|
|
|
}
|
2014-03-22 03:13:46 +09:00
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2016-03-04 18:25:16 +09:00
|
|
|
mobj = re.match(self._VALID_URL, url)
|
|
|
|
video_id = mobj.group('id')
|
|
|
|
sid = mobj.group('sid')
|
|
|
|
|
|
|
|
if mobj.group('query'):
|
|
|
|
qs = compat_parse_qs(mobj.group('query'))
|
|
|
|
if not qs.get('playList'):
|
|
|
|
raise ExtractorError('Invalid URL', expected=True)
|
|
|
|
video_id = qs['playList'][0]
|
|
|
|
if qs.get('sid'):
|
|
|
|
sid = qs['sid'][0]
|
|
|
|
|
2014-04-15 23:18:37 +09:00
|
|
|
embed_url = 'https://embed.5min.com/playerseed/?playList=%s' % video_id
|
2016-03-04 18:25:16 +09:00
|
|
|
if not sid:
|
|
|
|
embed_page = self._download_webpage(embed_url, video_id,
|
|
|
|
'Downloading embed page')
|
|
|
|
sid = self._search_regex(r'sid=(\d+)', embed_page, 'sid')
|
|
|
|
|
2014-04-29 21:57:38 +09:00
|
|
|
response = self._download_json(
|
2016-03-04 18:25:16 +09:00
|
|
|
'https://syn.5min.com/handlers/SenseHandler.ashx?' +
|
2016-03-26 04:46:57 +09:00
|
|
|
compat_urllib_parse_urlencode({
|
2016-03-04 18:25:16 +09:00
|
|
|
'func': 'GetResults',
|
|
|
|
'playlist': video_id,
|
|
|
|
'sid': sid,
|
|
|
|
'isPlayerSeed': 'true',
|
|
|
|
'url': embed_url,
|
|
|
|
}),
|
2014-04-29 21:57:38 +09:00
|
|
|
video_id)
|
|
|
|
if not response['success']:
|
2015-10-11 00:51:37 +09:00
|
|
|
raise ExtractorError(
|
|
|
|
'%s said: %s' % (
|
|
|
|
self.IE_NAME,
|
|
|
|
self._ERRORS.get(response['errorMessage'], response['errorMessage'])),
|
|
|
|
expected=True)
|
2014-04-29 21:57:38 +09:00
|
|
|
info = response['binding'][0]
|
2014-03-22 03:13:46 +09:00
|
|
|
|
|
|
|
formats = []
|
2015-10-11 00:51:37 +09:00
|
|
|
parsed_video_url = compat_urllib_parse_urlparse(compat_parse_qs(
|
|
|
|
compat_urllib_parse_urlparse(info['EmbededURL']).query)['videoUrl'][0])
|
|
|
|
for rendition in info['Renditions']:
|
2016-03-04 18:25:16 +09:00
|
|
|
if rendition['RenditionType'] == 'aac' or rendition['RenditionType'] == 'm3u8':
|
2015-10-11 00:51:37 +09:00
|
|
|
continue
|
|
|
|
else:
|
|
|
|
rendition_url = compat_urlparse.urlunparse(parsed_video_url._replace(path=replace_extension(parsed_video_url.path.replace('//', '/%s/' % rendition['ID']), rendition['RenditionType'])))
|
|
|
|
quality = self._QUALITIES.get(rendition['ID'], {})
|
2014-03-22 03:13:46 +09:00
|
|
|
formats.append({
|
2015-10-11 00:51:37 +09:00
|
|
|
'format_id': '%s-%d' % (rendition['RenditionType'], rendition['ID']),
|
|
|
|
'url': rendition_url,
|
|
|
|
'width': quality.get('width'),
|
|
|
|
'height': quality.get('height'),
|
2014-03-22 03:13:46 +09:00
|
|
|
})
|
2015-10-11 00:51:37 +09:00
|
|
|
self._sort_formats(formats)
|
2014-03-22 03:13:46 +09:00
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': info['Title'],
|
2015-10-11 00:51:37 +09:00
|
|
|
'thumbnail': info.get('ThumbURL'),
|
|
|
|
'duration': parse_duration(info.get('Duration')),
|
2014-03-22 03:13:46 +09:00
|
|
|
'formats': formats,
|
|
|
|
}
|