]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/toggle.py
Completely change project name to yt-dlp (#85)
[yt-dlp.git] / yt_dlp / extractor / toggle.py
CommitLineData
ee0f0393 1# coding: utf-8
2from __future__ import unicode_literals
3
4import json
c40dbb19 5import re
ee0f0393 6
7from .common import InfoExtractor
8from ..utils import (
c82a8dd1 9 determine_ext,
ee0f0393 10 ExtractorError,
8f097af4 11 float_or_none,
ee0f0393 12 int_or_none,
ee0f0393 13 parse_iso8601,
29f7c58a 14 strip_or_none,
ee0f0393 15)
ee0f0393 16
17
cc0f378d 18class ToggleIE(InfoExtractor):
0f206ee8 19 IE_NAME = 'toggle'
29f7c58a 20 _VALID_URL = r'(?:https?://(?:(?:www\.)?mewatch|video\.toggle)\.sg/(?:en|zh)/(?:[^/]+/){2,}|toggle:)(?P<id>[0-9]+)'
ee0f0393 21 _TESTS = [{
fffc618c 22 'url': 'http://www.mewatch.sg/en/series/lion-moms-tif/trailers/lion-moms-premier/343115',
ee0f0393 23 'info_dict': {
24 'id': '343115',
25 'ext': 'mp4',
26 'title': 'Lion Moms Premiere',
27 'description': 'md5:aea1149404bff4d7f7b6da11fafd8e6b',
28 'upload_date': '20150910',
29 'timestamp': 1441858274,
30 },
31 'params': {
32 'skip_download': 'm3u8 download',
33 }
34 }, {
35 'note': 'DRM-protected video',
fffc618c 36 'url': 'http://www.mewatch.sg/en/movies/dug-s-special-mission/341413',
ee0f0393 37 'info_dict': {
38 'id': '341413',
39 'ext': 'wvm',
40 'title': 'Dug\'s Special Mission',
41 'description': 'md5:e86c6f4458214905c1772398fabc93e0',
42 'upload_date': '20150827',
43 'timestamp': 1440644006,
44 },
45 'params': {
46 'skip_download': 'DRM-protected wvm download',
47 }
48 }, {
e33c9cba 49 # this also tests correct video id extraction
ee0f0393 50 'note': 'm3u8 links are geo-restricted, but Android/mp4 is okay',
fffc618c 51 'url': 'http://www.mewatch.sg/en/series/28th-sea-games-5-show/28th-sea-games-5-show-ep11/332861',
ee0f0393 52 'info_dict': {
53 'id': '332861',
54 'ext': 'mp4',
55 'title': '28th SEA Games (5 Show) - Episode 11',
56 'description': 'md5:3cd4f5f56c7c3b1340c50a863f896faa',
57 'upload_date': '20150605',
58 'timestamp': 1433480166,
59 },
60 'params': {
61 'skip_download': 'DRM-protected wvm download',
62 },
63 'skip': 'm3u8 links are geo-restricted'
64 }, {
65 'url': 'http://video.toggle.sg/en/clips/seraph-sun-aloysius-will-suddenly-sing-some-old-songs-in-high-pitch-on-set/343331',
66 'only_matching': True,
67 }, {
fffc618c 68 'url': 'http://www.mewatch.sg/en/clips/seraph-sun-aloysius-will-suddenly-sing-some-old-songs-in-high-pitch-on-set/343331',
ee0f0393 69 'only_matching': True,
70 }, {
fffc618c 71 'url': 'http://www.mewatch.sg/zh/series/zero-calling-s2-hd/ep13/336367',
ee0f0393 72 'only_matching': True,
73 }, {
fffc618c 74 'url': 'http://www.mewatch.sg/en/series/vetri-s2/webisodes/jeeva-is-an-orphan-vetri-s2-webisode-7/342302',
ee0f0393 75 'only_matching': True,
35a2d221 76 }, {
fffc618c 77 'url': 'http://www.mewatch.sg/en/movies/seven-days/321936',
35a2d221
S
78 'only_matching': True,
79 }, {
fffc618c
XH
80 'url': 'https://www.mewatch.sg/en/tv-show/news/may-2017-cna-singapore-tonight/fri-19-may-2017/512456',
81 'only_matching': True,
82 }, {
83 'url': 'http://www.mewatch.sg/en/channels/eleven-plus/401585',
35a2d221 84 'only_matching': True,
ee0f0393 85 }]
86
ee0f0393 87 _API_USER = 'tvpapi_147'
88 _API_PASS = '11111'
89
90 def _real_extract(self, url):
91 video_id = self._match_id(url)
92
ee0f0393 93 params = {
94 'initObj': {
95 'Locale': {
74c73017
S
96 'LocaleLanguage': '',
97 'LocaleCountry': '',
98 'LocaleDevice': '',
99 'LocaleUserState': 0
ee0f0393 100 },
74c73017
S
101 'Platform': 0,
102 'SiteGuid': 0,
103 'DomainID': '0',
104 'UDID': '',
29f7c58a 105 'ApiUser': self._API_USER,
106 'ApiPass': self._API_PASS
ee0f0393 107 },
108 'MediaID': video_id,
109 'mediaType': 0,
110 }
111
29f7c58a 112 info = self._download_json(
ee0f0393 113 'http://tvpapi.as.tvinci.com/v2_9/gateways/jsonpostgw.aspx?m=GetMediaInfo',
29f7c58a 114 video_id, 'Downloading video info json', data=json.dumps(params).encode('utf-8'))
ee0f0393 115
116 title = info['MediaName']
ee0f0393 117
c40dbb19 118 formats = []
ee0f0393 119 for video_file in info.get('Files', []):
989e9f8e 120 video_url, vid_format = video_file.get('URL'), video_file.get('Format')
949faa15 121 if not video_url or video_url == 'NA' or not vid_format:
989e9f8e
S
122 continue
123 ext = determine_ext(video_url)
124 vid_format = vid_format.replace(' ', '')
ee0f0393 125 # if geo-restricted, m3u8 is inaccessible, but mp4 is okay
126 if ext == 'm3u8':
29f7c58a 127 m3u8_formats = self._extract_m3u8_formats(
989e9f8e 128 video_url, video_id, ext='mp4', m3u8_id=vid_format,
ee0f0393 129 note='Downloading %s m3u8 information' % vid_format,
130 errnote='Failed to download %s m3u8 information' % vid_format,
29f7c58a 131 fatal=False)
132 for f in m3u8_formats:
133 # Apple FairPlay Streaming
134 if '/fpshls/' in f['url']:
135 continue
136 formats.append(f)
949faa15
S
137 elif ext == 'mpd':
138 formats.extend(self._extract_mpd_formats(
139 video_url, video_id, mpd_id=vid_format,
140 note='Downloading %s MPD manifest' % vid_format,
141 errnote='Failed to download %s MPD manifest' % vid_format,
142 fatal=False))
143 elif ext == 'ism':
144 formats.extend(self._extract_ism_formats(
145 video_url, video_id, ism_id=vid_format,
146 note='Downloading %s ISM manifest' % vid_format,
147 errnote='Failed to download %s ISM manifest' % vid_format,
148 fatal=False))
29f7c58a 149 elif ext == 'mp4':
ee0f0393 150 formats.append({
151 'ext': ext,
989e9f8e 152 'url': video_url,
ee0f0393 153 'format_id': vid_format,
ee0f0393 154 })
ee0f0393 155 if not formats:
29f7c58a 156 for meta in (info.get('Metas') or []):
06869367 157 if (not self._downloader.params.get('allow_unplayable_formats')
158 and meta.get('Key') == 'Encryption' and meta.get('Value') == '1'):
29f7c58a 159 raise ExtractorError(
160 'This video is DRM protected.', expected=True)
ee0f0393 161 # Most likely because geo-blocked
162 raise ExtractorError('No downloadable videos found', expected=True)
ee0f0393 163 self._sort_formats(formats)
164
c40dbb19
S
165 thumbnails = []
166 for picture in info.get('Pictures', []):
167 if not isinstance(picture, dict):
168 continue
169 pic_url = picture.get('URL')
170 if not pic_url:
171 continue
172 thumbnail = {
173 'url': pic_url,
174 }
175 pic_size = picture.get('PicSize', '')
176 m = re.search(r'(?P<width>\d+)[xX](?P<height>\d+)', pic_size)
177 if m:
178 thumbnail.update({
179 'width': int(m.group('width')),
180 'height': int(m.group('height')),
181 })
182 thumbnails.append(thumbnail)
183
29f7c58a 184 def counter(prefix):
185 return int_or_none(
186 info.get(prefix + 'Counter') or info.get(prefix.lower() + '_counter'))
187
ee0f0393 188 return {
189 'id': video_id,
190 'title': title,
29f7c58a 191 'description': strip_or_none(info.get('Description')),
192 'duration': int_or_none(info.get('Duration')),
193 'timestamp': parse_iso8601(info.get('CreationDate') or None),
194 'average_rating': float_or_none(info.get('Rating')),
195 'view_count': counter('View'),
196 'like_count': counter('Like'),
c40dbb19 197 'thumbnails': thumbnails,
ee0f0393 198 'formats': formats,
199 }
29f7c58a 200
201
202class MeWatchIE(InfoExtractor):
203 IE_NAME = 'mewatch'
204 _VALID_URL = r'https?://(?:(?:www|live)\.)?mewatch\.sg/watch/[^/?#&]+-(?P<id>[0-9]+)'
205 _TESTS = [{
206 'url': 'https://www.mewatch.sg/watch/Recipe-Of-Life-E1-179371',
207 'info_dict': {
208 'id': '1008625',
209 'ext': 'mp4',
210 'title': 'Recipe Of Life 味之道',
211 'timestamp': 1603306526,
212 'description': 'md5:6e88cde8af2068444fc8e1bc3ebf257c',
213 'upload_date': '20201021',
214 },
215 'params': {
216 'skip_download': 'm3u8 download',
217 },
218 }, {
219 'url': 'https://www.mewatch.sg/watch/Little-Red-Dot-Detectives-S2-搜密。打卡。小红点-S2-E1-176232',
220 'only_matching': True,
221 }, {
222 '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',
223 'only_matching': True,
224 }, {
225 'url': 'https://live.mewatch.sg/watch/Recipe-Of-Life-E41-189759',
226 'only_matching': True,
227 }]
228
229 def _real_extract(self, url):
230 item_id = self._match_id(url)
231 custom_id = self._download_json(
232 'https://cdn.mewatch.sg/api/items/' + item_id,
233 item_id, query={'segments': 'all'})['customId']
234 return self.url_result(
235 'toggle:' + custom_id, ToggleIE.ie_key(), custom_id)