2015-09-17 05:51:50 +00:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import json
|
2015-12-19 13:19:26 +00:00
|
|
|
import re
|
2015-09-17 05:51:50 +00:00
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import (
|
2015-12-19 13:04:38 +00:00
|
|
|
determine_ext,
|
2015-12-19 13:23:28 +00:00
|
|
|
float_or_none,
|
2015-09-17 05:51:50 +00:00
|
|
|
int_or_none,
|
|
|
|
parse_iso8601,
|
2021-01-01 12:26:37 +00:00
|
|
|
strip_or_none,
|
2015-09-17 05:51:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
2015-12-19 13:59:00 +00:00
|
|
|
class ToggleIE(InfoExtractor):
|
2015-12-19 17:11:23 +00:00
|
|
|
IE_NAME = 'toggle'
|
2021-01-01 12:26:37 +00:00
|
|
|
_VALID_URL = r'(?:https?://(?:(?:www\.)?mewatch|video\.toggle)\.sg/(?:en|zh)/(?:[^/]+/){2,}|toggle:)(?P<id>[0-9]+)'
|
2015-09-17 05:51:50 +00:00
|
|
|
_TESTS = [{
|
2020-02-05 15:41:56 +00:00
|
|
|
'url': 'http://www.mewatch.sg/en/series/lion-moms-tif/trailers/lion-moms-premier/343115',
|
2015-09-17 05:51:50 +00:00
|
|
|
'info_dict': {
|
|
|
|
'id': '343115',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Lion Moms Premiere',
|
|
|
|
'description': 'md5:aea1149404bff4d7f7b6da11fafd8e6b',
|
|
|
|
'upload_date': '20150910',
|
|
|
|
'timestamp': 1441858274,
|
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': 'm3u8 download',
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
'note': 'DRM-protected video',
|
2020-02-05 15:41:56 +00:00
|
|
|
'url': 'http://www.mewatch.sg/en/movies/dug-s-special-mission/341413',
|
2015-09-17 05:51:50 +00:00
|
|
|
'info_dict': {
|
|
|
|
'id': '341413',
|
|
|
|
'ext': 'wvm',
|
|
|
|
'title': 'Dug\'s Special Mission',
|
|
|
|
'description': 'md5:e86c6f4458214905c1772398fabc93e0',
|
|
|
|
'upload_date': '20150827',
|
|
|
|
'timestamp': 1440644006,
|
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': 'DRM-protected wvm download',
|
|
|
|
}
|
|
|
|
}, {
|
2015-12-19 13:58:18 +00:00
|
|
|
# this also tests correct video id extraction
|
2015-09-17 05:51:50 +00:00
|
|
|
'note': 'm3u8 links are geo-restricted, but Android/mp4 is okay',
|
2020-02-05 15:41:56 +00:00
|
|
|
'url': 'http://www.mewatch.sg/en/series/28th-sea-games-5-show/28th-sea-games-5-show-ep11/332861',
|
2015-09-17 05:51:50 +00:00
|
|
|
'info_dict': {
|
|
|
|
'id': '332861',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': '28th SEA Games (5 Show) - Episode 11',
|
|
|
|
'description': 'md5:3cd4f5f56c7c3b1340c50a863f896faa',
|
|
|
|
'upload_date': '20150605',
|
|
|
|
'timestamp': 1433480166,
|
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': 'DRM-protected wvm download',
|
|
|
|
},
|
|
|
|
'skip': 'm3u8 links are geo-restricted'
|
|
|
|
}, {
|
|
|
|
'url': 'http://video.toggle.sg/en/clips/seraph-sun-aloysius-will-suddenly-sing-some-old-songs-in-high-pitch-on-set/343331',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
2020-02-05 15:41:56 +00:00
|
|
|
'url': 'http://www.mewatch.sg/en/clips/seraph-sun-aloysius-will-suddenly-sing-some-old-songs-in-high-pitch-on-set/343331',
|
2015-09-17 05:51:50 +00:00
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
2020-02-05 15:41:56 +00:00
|
|
|
'url': 'http://www.mewatch.sg/zh/series/zero-calling-s2-hd/ep13/336367',
|
2015-09-17 05:51:50 +00:00
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
2020-02-05 15:41:56 +00:00
|
|
|
'url': 'http://www.mewatch.sg/en/series/vetri-s2/webisodes/jeeva-is-an-orphan-vetri-s2-webisode-7/342302',
|
2015-09-17 05:51:50 +00:00
|
|
|
'only_matching': True,
|
2017-05-20 16:06:30 +00:00
|
|
|
}, {
|
2020-02-05 15:41:56 +00:00
|
|
|
'url': 'http://www.mewatch.sg/en/movies/seven-days/321936',
|
2017-05-20 16:06:30 +00:00
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
2020-02-05 15:41:56 +00:00
|
|
|
'url': 'https://www.mewatch.sg/en/tv-show/news/may-2017-cna-singapore-tonight/fri-19-may-2017/512456',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'http://www.mewatch.sg/en/channels/eleven-plus/401585',
|
2017-05-20 16:06:30 +00:00
|
|
|
'only_matching': True,
|
2015-09-17 05:51:50 +00:00
|
|
|
}]
|
|
|
|
|
|
|
|
_API_USER = 'tvpapi_147'
|
|
|
|
_API_PASS = '11111'
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
video_id = self._match_id(url)
|
|
|
|
|
|
|
|
params = {
|
|
|
|
'initObj': {
|
|
|
|
'Locale': {
|
2015-12-19 13:06:05 +00:00
|
|
|
'LocaleLanguage': '',
|
|
|
|
'LocaleCountry': '',
|
|
|
|
'LocaleDevice': '',
|
|
|
|
'LocaleUserState': 0
|
2015-09-17 05:51:50 +00:00
|
|
|
},
|
2015-12-19 13:06:05 +00:00
|
|
|
'Platform': 0,
|
|
|
|
'SiteGuid': 0,
|
|
|
|
'DomainID': '0',
|
|
|
|
'UDID': '',
|
2021-01-01 12:26:37 +00:00
|
|
|
'ApiUser': self._API_USER,
|
|
|
|
'ApiPass': self._API_PASS
|
2015-09-17 05:51:50 +00:00
|
|
|
},
|
|
|
|
'MediaID': video_id,
|
|
|
|
'mediaType': 0,
|
|
|
|
}
|
|
|
|
|
2021-01-01 12:26:37 +00:00
|
|
|
info = self._download_json(
|
2015-09-17 05:51:50 +00:00
|
|
|
'http://tvpapi.as.tvinci.com/v2_9/gateways/jsonpostgw.aspx?m=GetMediaInfo',
|
2021-01-01 12:26:37 +00:00
|
|
|
video_id, 'Downloading video info json', data=json.dumps(params).encode('utf-8'))
|
2015-09-17 05:51:50 +00:00
|
|
|
|
|
|
|
title = info['MediaName']
|
|
|
|
|
2015-12-19 13:19:26 +00:00
|
|
|
formats = []
|
2015-09-17 05:51:50 +00:00
|
|
|
for video_file in info.get('Files', []):
|
2015-12-19 13:52:37 +00:00
|
|
|
video_url, vid_format = video_file.get('URL'), video_file.get('Format')
|
2018-02-28 15:55:09 +00:00
|
|
|
if not video_url or video_url == 'NA' or not vid_format:
|
2015-12-19 13:52:37 +00:00
|
|
|
continue
|
|
|
|
ext = determine_ext(video_url)
|
|
|
|
vid_format = vid_format.replace(' ', '')
|
2015-09-17 05:51:50 +00:00
|
|
|
# if geo-restricted, m3u8 is inaccessible, but mp4 is okay
|
|
|
|
if ext == 'm3u8':
|
2021-01-01 12:26:37 +00:00
|
|
|
m3u8_formats = self._extract_m3u8_formats(
|
2015-12-19 13:52:37 +00:00
|
|
|
video_url, video_id, ext='mp4', m3u8_id=vid_format,
|
2015-09-17 05:51:50 +00:00
|
|
|
note='Downloading %s m3u8 information' % vid_format,
|
|
|
|
errnote='Failed to download %s m3u8 information' % vid_format,
|
2021-01-01 12:26:37 +00:00
|
|
|
fatal=False)
|
|
|
|
for f in m3u8_formats:
|
|
|
|
# Apple FairPlay Streaming
|
|
|
|
if '/fpshls/' in f['url']:
|
|
|
|
continue
|
|
|
|
formats.append(f)
|
2018-02-28 15:55:09 +00:00
|
|
|
elif ext == 'mpd':
|
|
|
|
formats.extend(self._extract_mpd_formats(
|
|
|
|
video_url, video_id, mpd_id=vid_format,
|
|
|
|
note='Downloading %s MPD manifest' % vid_format,
|
|
|
|
errnote='Failed to download %s MPD manifest' % vid_format,
|
|
|
|
fatal=False))
|
|
|
|
elif ext == 'ism':
|
|
|
|
formats.extend(self._extract_ism_formats(
|
|
|
|
video_url, video_id, ism_id=vid_format,
|
|
|
|
note='Downloading %s ISM manifest' % vid_format,
|
|
|
|
errnote='Failed to download %s ISM manifest' % vid_format,
|
|
|
|
fatal=False))
|
2021-01-01 12:26:37 +00:00
|
|
|
elif ext == 'mp4':
|
2015-09-17 05:51:50 +00:00
|
|
|
formats.append({
|
|
|
|
'ext': ext,
|
2015-12-19 13:52:37 +00:00
|
|
|
'url': video_url,
|
2015-09-17 05:51:50 +00:00
|
|
|
'format_id': vid_format,
|
|
|
|
})
|
|
|
|
if not formats:
|
2021-01-01 12:26:37 +00:00
|
|
|
for meta in (info.get('Metas') or []):
|
2021-05-17 12:23:08 +00:00
|
|
|
if (not self.get_param('allow_unplayable_formats')
|
2021-02-12 04:34:04 +00:00
|
|
|
and meta.get('Key') == 'Encryption' and meta.get('Value') == '1'):
|
2021-04-17 00:09:58 +00:00
|
|
|
self.raise_no_formats(
|
2021-01-01 12:26:37 +00:00
|
|
|
'This video is DRM protected.', expected=True)
|
2021-04-17 00:09:58 +00:00
|
|
|
# Most likely because geo-blocked if no formats and no DRM
|
2015-09-17 05:51:50 +00:00
|
|
|
self._sort_formats(formats)
|
|
|
|
|
2015-12-19 13:19:26 +00:00
|
|
|
thumbnails = []
|
|
|
|
for picture in info.get('Pictures', []):
|
|
|
|
if not isinstance(picture, dict):
|
|
|
|
continue
|
|
|
|
pic_url = picture.get('URL')
|
|
|
|
if not pic_url:
|
|
|
|
continue
|
|
|
|
thumbnail = {
|
|
|
|
'url': pic_url,
|
|
|
|
}
|
|
|
|
pic_size = picture.get('PicSize', '')
|
|
|
|
m = re.search(r'(?P<width>\d+)[xX](?P<height>\d+)', pic_size)
|
|
|
|
if m:
|
|
|
|
thumbnail.update({
|
|
|
|
'width': int(m.group('width')),
|
|
|
|
'height': int(m.group('height')),
|
|
|
|
})
|
|
|
|
thumbnails.append(thumbnail)
|
|
|
|
|
2021-01-01 12:26:37 +00:00
|
|
|
def counter(prefix):
|
|
|
|
return int_or_none(
|
|
|
|
info.get(prefix + 'Counter') or info.get(prefix.lower() + '_counter'))
|
|
|
|
|
2015-09-17 05:51:50 +00:00
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
2021-01-01 12:26:37 +00:00
|
|
|
'description': strip_or_none(info.get('Description')),
|
|
|
|
'duration': int_or_none(info.get('Duration')),
|
|
|
|
'timestamp': parse_iso8601(info.get('CreationDate') or None),
|
|
|
|
'average_rating': float_or_none(info.get('Rating')),
|
|
|
|
'view_count': counter('View'),
|
|
|
|
'like_count': counter('Like'),
|
2015-12-19 13:19:26 +00:00
|
|
|
'thumbnails': thumbnails,
|
2015-09-17 05:51:50 +00:00
|
|
|
'formats': formats,
|
|
|
|
}
|
2021-01-01 12:26:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MeWatchIE(InfoExtractor):
|
|
|
|
IE_NAME = 'mewatch'
|
|
|
|
_VALID_URL = r'https?://(?:(?:www|live)\.)?mewatch\.sg/watch/[^/?#&]+-(?P<id>[0-9]+)'
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://www.mewatch.sg/watch/Recipe-Of-Life-E1-179371',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '1008625',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Recipe Of Life 味之道',
|
|
|
|
'timestamp': 1603306526,
|
|
|
|
'description': 'md5:6e88cde8af2068444fc8e1bc3ebf257c',
|
|
|
|
'upload_date': '20201021',
|
|
|
|
},
|
|
|
|
'params': {
|
|
|
|
'skip_download': 'm3u8 download',
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
'url': 'https://www.mewatch.sg/watch/Little-Red-Dot-Detectives-S2-搜密。打卡。小红点-S2-E1-176232',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'https://www.mewatch.sg/watch/Little-Red-Dot-Detectives-S2-%E6%90%9C%E5%AF%86%E3%80%82%E6%89%93%E5%8D%A1%E3%80%82%E5%B0%8F%E7%BA%A2%E7%82%B9-S2-E1-176232',
|
|
|
|
'only_matching': True,
|
|
|
|
}, {
|
|
|
|
'url': 'https://live.mewatch.sg/watch/Recipe-Of-Life-E41-189759',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
item_id = self._match_id(url)
|
|
|
|
custom_id = self._download_json(
|
|
|
|
'https://cdn.mewatch.sg/api/items/' + item_id,
|
|
|
|
item_id, query={'segments': 'all'})['customId']
|
|
|
|
return self.url_result(
|
|
|
|
'toggle:' + custom_id, ToggleIE.ie_key(), custom_id)
|