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