tencent.py 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490
  1. import functools
  2. import random
  3. import re
  4. import string
  5. import time
  6. from .common import InfoExtractor
  7. from ..aes import aes_cbc_encrypt_bytes
  8. from ..utils import (
  9. ExtractorError,
  10. determine_ext,
  11. float_or_none,
  12. int_or_none,
  13. js_to_json,
  14. traverse_obj,
  15. urljoin,
  16. )
  17. class TencentBaseIE(InfoExtractor):
  18. """Subclasses must set _API_URL, _APP_VERSION, _PLATFORM, _HOST, _REFERER"""
  19. def _check_api_response(self, api_response):
  20. msg = api_response.get('msg')
  21. if api_response.get('code') != '0.0' and msg is not None:
  22. if msg in (
  23. '您所在区域暂无此内容版权(如设置VPN请关闭后重试)',
  24. 'This content is not available in your area due to copyright restrictions. Please choose other videos.',
  25. ):
  26. self.raise_geo_restricted()
  27. raise ExtractorError(f'Tencent said: {msg}')
  28. def _get_ckey(self, video_id, url, guid):
  29. ua = self.get_param('http_headers')['User-Agent']
  30. payload = (f'{video_id}|{int(time.time())}|mg3c3b04ba|{self._APP_VERSION}|{guid}|'
  31. f'{self._PLATFORM}|{url[:48]}|{ua.lower()[:48]}||Mozilla|Netscape|Windows x86_64|00|')
  32. return aes_cbc_encrypt_bytes(
  33. bytes(f'|{sum(map(ord, payload))}|{payload}', 'utf-8'),
  34. b'Ok\xda\xa3\x9e/\x8c\xb0\x7f^r-\x9e\xde\xf3\x14',
  35. b'\x01PJ\xf3V\xe6\x19\xcf.B\xbb\xa6\x8c?p\xf9',
  36. padding_mode='whitespace').hex().upper()
  37. def _get_video_api_response(self, video_url, video_id, series_id, subtitle_format, video_format, video_quality):
  38. guid = ''.join(random.choices(string.digits + string.ascii_lowercase, k=16))
  39. ckey = self._get_ckey(video_id, video_url, guid)
  40. query = {
  41. 'vid': video_id,
  42. 'cid': series_id,
  43. 'cKey': ckey,
  44. 'encryptVer': '8.1',
  45. 'spcaptiontype': '1' if subtitle_format == 'vtt' else '0',
  46. 'sphls': '2' if video_format == 'hls' else '0',
  47. 'dtype': '3' if video_format == 'hls' else '0',
  48. 'defn': video_quality,
  49. 'spsrt': '2', # Enable subtitles
  50. 'sphttps': '1', # Enable HTTPS
  51. 'otype': 'json',
  52. 'spwm': '1',
  53. 'hevclv': '28', # Enable HEVC
  54. 'drm': '40', # Enable DRM
  55. # For HDR
  56. 'spvideo': '4',
  57. 'spsfrhdr': '100',
  58. # For SHD
  59. 'host': self._HOST,
  60. 'referer': self._REFERER,
  61. 'ehost': video_url,
  62. 'appVer': self._APP_VERSION,
  63. 'platform': self._PLATFORM,
  64. # For VQQ
  65. 'guid': guid,
  66. 'flowid': ''.join(random.choices(string.digits + string.ascii_lowercase, k=32)),
  67. }
  68. return self._search_json(r'QZOutputJson=', self._download_webpage(
  69. self._API_URL, video_id, query=query), 'api_response', video_id)
  70. def _extract_video_formats_and_subtitles(self, api_response, video_id):
  71. video_response = api_response['vl']['vi'][0]
  72. formats, subtitles = [], {}
  73. for video_format in video_response['ul']['ui']:
  74. if video_format.get('hls') or determine_ext(video_format['url']) == 'm3u8':
  75. fmts, subs = self._extract_m3u8_formats_and_subtitles(
  76. video_format['url'] + traverse_obj(video_format, ('hls', 'pt'), default=''),
  77. video_id, 'mp4', fatal=False)
  78. formats.extend(fmts)
  79. self._merge_subtitles(subs, target=subtitles)
  80. else:
  81. formats.append({
  82. 'url': f'{video_format["url"]}{video_response["fn"]}?vkey={video_response["fvkey"]}',
  83. 'ext': 'mp4',
  84. })
  85. identifier = video_response.get('br')
  86. format_response = traverse_obj(
  87. api_response, ('fl', 'fi', lambda _, v: v['br'] == identifier),
  88. expected_type=dict, get_all=False) or {}
  89. common_info = {
  90. 'width': video_response.get('vw'),
  91. 'height': video_response.get('vh'),
  92. 'abr': float_or_none(format_response.get('audiobandwidth'), scale=1000),
  93. 'vbr': float_or_none(format_response.get('bandwidth'), scale=1000),
  94. 'fps': format_response.get('vfps'),
  95. 'format': format_response.get('sname'),
  96. 'format_id': format_response.get('name'),
  97. 'format_note': format_response.get('resolution'),
  98. 'dynamic_range': {'hdr10': 'hdr10'}.get(format_response.get('name'), 'sdr'),
  99. 'has_drm': format_response.get('drm', 0) != 0,
  100. }
  101. for f in formats:
  102. f.update(common_info)
  103. return formats, subtitles
  104. def _extract_video_native_subtitles(self, api_response):
  105. subtitles = {}
  106. for subtitle in traverse_obj(api_response, ('sfl', 'fi')) or ():
  107. subtitles.setdefault(subtitle['lang'].lower(), []).append({
  108. 'url': subtitle['url'],
  109. 'ext': 'srt' if subtitle.get('captionType') == 1 else 'vtt',
  110. 'protocol': 'm3u8_native' if determine_ext(subtitle['url']) == 'm3u8' else 'http',
  111. })
  112. return subtitles
  113. def _extract_all_video_formats_and_subtitles(self, url, video_id, series_id):
  114. api_responses = [self._get_video_api_response(url, video_id, series_id, 'srt', 'hls', 'hd')]
  115. self._check_api_response(api_responses[0])
  116. qualities = traverse_obj(api_responses, (0, 'fl', 'fi', ..., 'name')) or ('shd', 'fhd')
  117. for q in qualities:
  118. if q not in ('ld', 'sd', 'hd'):
  119. api_responses.append(self._get_video_api_response(
  120. url, video_id, series_id, 'vtt', 'hls', q))
  121. self._check_api_response(api_responses[-1])
  122. formats, subtitles = [], {}
  123. for api_response in api_responses:
  124. fmts, subs = self._extract_video_formats_and_subtitles(api_response, video_id)
  125. native_subtitles = self._extract_video_native_subtitles(api_response)
  126. formats.extend(fmts)
  127. self._merge_subtitles(subs, native_subtitles, target=subtitles)
  128. return formats, subtitles
  129. def _get_clean_title(self, title):
  130. return re.sub(
  131. r'\s*[_\-]\s*(?:Watch online|Watch HD Video Online|WeTV|腾讯视频|(?:高清)?1080P在线观看平台).*?$',
  132. '', title or '').strip() or None
  133. class VQQBaseIE(TencentBaseIE):
  134. _VALID_URL_BASE = r'https?://v\.qq\.com'
  135. _API_URL = 'https://h5vv6.video.qq.com/getvinfo'
  136. _APP_VERSION = '3.5.57'
  137. _PLATFORM = '10901'
  138. _HOST = 'v.qq.com'
  139. _REFERER = 'v.qq.com'
  140. def _get_webpage_metadata(self, webpage, video_id):
  141. return self._search_json(
  142. r'<script[^>]*>[^<]*window\.__(?:pinia|PINIA__)\s*=',
  143. webpage, 'pinia data', video_id, transform_source=js_to_json, fatal=False)
  144. class VQQVideoIE(VQQBaseIE):
  145. IE_NAME = 'vqq:video'
  146. _VALID_URL = VQQBaseIE._VALID_URL_BASE + r'/x/(?:page|cover/(?P<series_id>\w+))/(?P<id>\w+)'
  147. _TESTS = [{
  148. 'url': 'https://v.qq.com/x/page/q326831cny0.html',
  149. 'md5': 'b11c9cb781df710d686b950376676e2a',
  150. 'info_dict': {
  151. 'id': 'q326831cny0',
  152. 'ext': 'mp4',
  153. 'title': '我是选手:雷霆裂阵,终极时刻',
  154. 'description': 'md5:e7ed70be89244017dac2a835a10aeb1e',
  155. 'thumbnail': r're:^https?://[^?#]+q326831cny0',
  156. 'format_id': r're:^shd',
  157. },
  158. }, {
  159. 'url': 'https://v.qq.com/x/page/o3013za7cse.html',
  160. 'md5': 'a1bcf42c6d28c189bd2fe2d468abb287',
  161. 'info_dict': {
  162. 'id': 'o3013za7cse',
  163. 'ext': 'mp4',
  164. 'title': '欧阳娜娜VLOG',
  165. 'description': 'md5:29fe847497a98e04a8c3826e499edd2e',
  166. 'thumbnail': r're:^https?://[^?#]+o3013za7cse',
  167. 'format_id': r're:^shd',
  168. },
  169. }, {
  170. 'url': 'https://v.qq.com/x/cover/7ce5noezvafma27/a00269ix3l8.html',
  171. 'md5': '87968df6238a65d2478f19c25adf850b',
  172. 'info_dict': {
  173. 'id': 'a00269ix3l8',
  174. 'ext': 'mp4',
  175. 'title': '鸡毛飞上天 第01集',
  176. 'description': 'md5:8cae3534327315b3872fbef5e51b5c5b',
  177. 'thumbnail': r're:^https?://[^?#]+7ce5noezvafma27',
  178. 'series': '鸡毛飞上天',
  179. 'format_id': r're:^shd',
  180. },
  181. 'skip': '404',
  182. }, {
  183. 'url': 'https://v.qq.com/x/cover/mzc00200p29k31e/s0043cwsgj0.html',
  184. 'md5': 'fadd10bf88aec3420f06f19ee1d24c5b',
  185. 'info_dict': {
  186. 'id': 's0043cwsgj0',
  187. 'ext': 'mp4',
  188. 'title': '第1集:如何快乐吃糖?',
  189. 'description': 'md5:1d8c3a0b8729ae3827fa5b2d3ebd5213',
  190. 'thumbnail': r're:^https?://[^?#]+s0043cwsgj0',
  191. 'series': '青年理工工作者生活研究所',
  192. 'format_id': r're:^shd',
  193. },
  194. 'params': {'skip_download': 'm3u8'},
  195. }, {
  196. # Geo-restricted to China
  197. 'url': 'https://v.qq.com/x/cover/mcv8hkc8zk8lnov/x0036x5qqsr.html',
  198. 'only_matching': True,
  199. }]
  200. def _real_extract(self, url):
  201. video_id, series_id = self._match_valid_url(url).group('id', 'series_id')
  202. webpage = self._download_webpage(url, video_id)
  203. webpage_metadata = self._get_webpage_metadata(webpage, video_id)
  204. formats, subtitles = self._extract_all_video_formats_and_subtitles(url, video_id, series_id)
  205. return {
  206. 'id': video_id,
  207. 'title': self._get_clean_title(self._og_search_title(webpage)
  208. or traverse_obj(webpage_metadata, ('global', 'videoInfo', 'title'))),
  209. 'description': (self._og_search_description(webpage)
  210. or traverse_obj(webpage_metadata, ('global', 'videoInfo', 'desc'))),
  211. 'formats': formats,
  212. 'subtitles': subtitles,
  213. 'thumbnail': (self._og_search_thumbnail(webpage)
  214. or traverse_obj(webpage_metadata, ('global', 'videoInfo', 'pic160x90'))),
  215. 'series': traverse_obj(webpage_metadata, ('global', 'coverInfo', 'title')),
  216. }
  217. class VQQSeriesIE(VQQBaseIE):
  218. IE_NAME = 'vqq:series'
  219. _VALID_URL = VQQBaseIE._VALID_URL_BASE + r'/x/cover/(?P<id>\w+)\.html/?(?:[?#]|$)'
  220. _TESTS = [{
  221. 'url': 'https://v.qq.com/x/cover/7ce5noezvafma27.html',
  222. 'info_dict': {
  223. 'id': '7ce5noezvafma27',
  224. 'title': '鸡毛飞上天',
  225. 'description': 'md5:8cae3534327315b3872fbef5e51b5c5b',
  226. },
  227. 'playlist_count': 55,
  228. }, {
  229. 'url': 'https://v.qq.com/x/cover/oshd7r0vy9sfq8e.html',
  230. 'info_dict': {
  231. 'id': 'oshd7r0vy9sfq8e',
  232. 'title': '恋爱细胞2',
  233. 'description': 'md5:9d8a2245679f71ca828534b0f95d2a03',
  234. },
  235. 'playlist_count': 12,
  236. }]
  237. def _real_extract(self, url):
  238. series_id = self._match_id(url)
  239. webpage = self._download_webpage(url, series_id)
  240. webpage_metadata = self._get_webpage_metadata(webpage, series_id)
  241. episode_paths = [f'/x/cover/{series_id}/{video_id}.html' for video_id in re.findall(
  242. r'<div[^>]+data-vid="(?P<video_id>[^"]+)"[^>]+class="[^"]+episode-item-rect--number',
  243. webpage)]
  244. return self.playlist_from_matches(
  245. episode_paths, series_id, ie=VQQVideoIE, getter=functools.partial(urljoin, url),
  246. title=self._get_clean_title(traverse_obj(webpage_metadata, ('coverInfo', 'title'))
  247. or self._og_search_title(webpage)),
  248. description=(traverse_obj(webpage_metadata, ('coverInfo', 'description'))
  249. or self._og_search_description(webpage)))
  250. class WeTvBaseIE(TencentBaseIE):
  251. _VALID_URL_BASE = r'https?://(?:www\.)?wetv\.vip/(?:[^?#]+/)?play'
  252. _API_URL = 'https://play.wetv.vip/getvinfo'
  253. _APP_VERSION = '3.5.57'
  254. _PLATFORM = '4830201'
  255. _HOST = 'wetv.vip'
  256. _REFERER = 'wetv.vip'
  257. def _get_webpage_metadata(self, webpage, video_id):
  258. return self._parse_json(
  259. traverse_obj(self._search_nextjs_data(webpage, video_id), ('props', 'pageProps', 'data')),
  260. video_id, fatal=False)
  261. def _extract_episode(self, url):
  262. video_id, series_id = self._match_valid_url(url).group('id', 'series_id')
  263. webpage = self._download_webpage(url, video_id)
  264. webpage_metadata = self._get_webpage_metadata(webpage, video_id)
  265. formats, subtitles = self._extract_all_video_formats_and_subtitles(url, video_id, series_id)
  266. return {
  267. 'id': video_id,
  268. 'title': self._get_clean_title(self._og_search_title(webpage)
  269. or traverse_obj(webpage_metadata, ('coverInfo', 'title'))),
  270. 'description': (traverse_obj(webpage_metadata, ('coverInfo', 'description'))
  271. or self._og_search_description(webpage)),
  272. 'formats': formats,
  273. 'subtitles': subtitles,
  274. 'thumbnail': self._og_search_thumbnail(webpage),
  275. 'duration': int_or_none(traverse_obj(webpage_metadata, ('videoInfo', 'duration'))),
  276. 'series': traverse_obj(webpage_metadata, ('coverInfo', 'title')),
  277. 'episode_number': int_or_none(traverse_obj(webpage_metadata, ('videoInfo', 'episode'))),
  278. }
  279. def _extract_series(self, url, ie):
  280. series_id = self._match_id(url)
  281. webpage = self._download_webpage(url, series_id)
  282. webpage_metadata = self._get_webpage_metadata(webpage, series_id)
  283. episode_paths = ([f'/play/{series_id}/{episode["vid"]}' for episode in webpage_metadata.get('videoList')]
  284. or re.findall(r'<a[^>]+class="play-video__link"[^>]+href="(?P<path>[^"]+)', webpage))
  285. return self.playlist_from_matches(
  286. episode_paths, series_id, ie=ie, getter=functools.partial(urljoin, url),
  287. title=self._get_clean_title(traverse_obj(webpage_metadata, ('coverInfo', 'title'))
  288. or self._og_search_title(webpage)),
  289. description=(traverse_obj(webpage_metadata, ('coverInfo', 'description'))
  290. or self._og_search_description(webpage)))
  291. class WeTvEpisodeIE(WeTvBaseIE):
  292. IE_NAME = 'wetv:episode'
  293. _VALID_URL = WeTvBaseIE._VALID_URL_BASE + r'/(?P<series_id>\w+)(?:-[^?#]+)?/(?P<id>\w+)(?:-[^?#]+)?'
  294. _TESTS = [{
  295. 'url': 'https://wetv.vip/en/play/air11ooo2rdsdi3-Cute-Programmer/v0040pr89t9-EP1-Cute-Programmer',
  296. 'md5': '0c70fdfaa5011ab022eebc598e64bbbe',
  297. 'info_dict': {
  298. 'id': 'v0040pr89t9',
  299. 'ext': 'mp4',
  300. 'title': 'EP1: Cute Programmer',
  301. 'description': 'md5:e87beab3bf9f392d6b9e541a63286343',
  302. 'thumbnail': r're:^https?://[^?#]+air11ooo2rdsdi3',
  303. 'series': 'Cute Programmer',
  304. 'episode': 'Episode 1',
  305. 'episode_number': 1,
  306. 'duration': 2835,
  307. 'format_id': r're:^shd',
  308. },
  309. }, {
  310. 'url': 'https://wetv.vip/en/play/u37kgfnfzs73kiu/p0039b9nvik',
  311. 'md5': '3b3c15ca4b9a158d8d28d5aa9d7c0a49',
  312. 'info_dict': {
  313. 'id': 'p0039b9nvik',
  314. 'ext': 'mp4',
  315. 'title': 'EP1: You Are My Glory',
  316. 'description': 'md5:831363a4c3b4d7615e1f3854be3a123b',
  317. 'thumbnail': r're:^https?://[^?#]+u37kgfnfzs73kiu',
  318. 'series': 'You Are My Glory',
  319. 'episode': 'Episode 1',
  320. 'episode_number': 1,
  321. 'duration': 2454,
  322. 'format_id': r're:^shd',
  323. },
  324. }, {
  325. 'url': 'https://wetv.vip/en/play/lcxgwod5hapghvw-WeTV-PICK-A-BOO/i0042y00lxp-Zhao-Lusi-Describes-The-First-Experiences-She-Had-In-Who-Rules-The-World-%7C-WeTV-PICK-A-BOO',
  326. 'md5': '71133f5c2d5d6cad3427e1b010488280',
  327. 'info_dict': {
  328. 'id': 'i0042y00lxp',
  329. 'ext': 'mp4',
  330. 'title': 'md5:f7a0857dbe5fbbe2e7ad630b92b54e6a',
  331. 'description': 'md5:76260cb9cdc0ef76826d7ca9d92fadfa',
  332. 'thumbnail': r're:^https?://[^?#]+i0042y00lxp',
  333. 'series': 'WeTV PICK-A-BOO',
  334. 'episode': 'Episode 0',
  335. 'episode_number': 0,
  336. 'duration': 442,
  337. 'format_id': r're:^shd',
  338. },
  339. }]
  340. def _real_extract(self, url):
  341. return self._extract_episode(url)
  342. class WeTvSeriesIE(WeTvBaseIE):
  343. _VALID_URL = WeTvBaseIE._VALID_URL_BASE + r'/(?P<id>\w+)(?:-[^/?#]+)?/?(?:[?#]|$)'
  344. _TESTS = [{
  345. 'url': 'https://wetv.vip/play/air11ooo2rdsdi3-Cute-Programmer',
  346. 'info_dict': {
  347. 'id': 'air11ooo2rdsdi3',
  348. 'title': 'Cute Programmer',
  349. 'description': 'md5:e87beab3bf9f392d6b9e541a63286343',
  350. },
  351. 'playlist_count': 30,
  352. }, {
  353. 'url': 'https://wetv.vip/en/play/u37kgfnfzs73kiu-You-Are-My-Glory',
  354. 'info_dict': {
  355. 'id': 'u37kgfnfzs73kiu',
  356. 'title': 'You Are My Glory',
  357. 'description': 'md5:831363a4c3b4d7615e1f3854be3a123b',
  358. },
  359. 'playlist_count': 32,
  360. }]
  361. def _real_extract(self, url):
  362. return self._extract_series(url, WeTvEpisodeIE)
  363. class IflixBaseIE(WeTvBaseIE):
  364. _VALID_URL_BASE = r'https?://(?:www\.)?iflix\.com/(?:[^?#]+/)?play'
  365. _API_URL = 'https://vplay.iflix.com/getvinfo'
  366. _APP_VERSION = '3.5.57'
  367. _PLATFORM = '330201'
  368. _HOST = 'www.iflix.com'
  369. _REFERER = 'www.iflix.com'
  370. class IflixEpisodeIE(IflixBaseIE):
  371. IE_NAME = 'iflix:episode'
  372. _VALID_URL = IflixBaseIE._VALID_URL_BASE + r'/(?P<series_id>\w+)(?:-[^?#]+)?/(?P<id>\w+)(?:-[^?#]+)?'
  373. _TESTS = [{
  374. 'url': 'https://www.iflix.com/en/play/daijrxu03yypu0s/a0040kvgaza',
  375. 'md5': '9740f9338c3a2105290d16b68fb3262f',
  376. 'info_dict': {
  377. 'id': 'a0040kvgaza',
  378. 'ext': 'mp4',
  379. 'title': 'EP1: Put Your Head On My Shoulder 2021',
  380. 'description': 'md5:c095a742d3b7da6dfedd0c8170727a42',
  381. 'thumbnail': r're:^https?://[^?#]+daijrxu03yypu0s',
  382. 'series': 'Put Your Head On My Shoulder 2021',
  383. 'episode': 'Episode 1',
  384. 'episode_number': 1,
  385. 'duration': 2639,
  386. 'format_id': r're:^shd',
  387. },
  388. }, {
  389. 'url': 'https://www.iflix.com/en/play/fvvrcc3ra9lbtt1-Take-My-Brother-Away/i0029sd3gm1-EP1%EF%BC%9ATake-My-Brother-Away',
  390. 'md5': '375c9b8478fdedca062274b2c2f53681',
  391. 'info_dict': {
  392. 'id': 'i0029sd3gm1',
  393. 'ext': 'mp4',
  394. 'title': 'EP1:Take My Brother Away',
  395. 'description': 'md5:f0f7be1606af51cd94d5627de96b0c76',
  396. 'thumbnail': r're:^https?://[^?#]+fvvrcc3ra9lbtt1',
  397. 'series': 'Take My Brother Away',
  398. 'episode': 'Episode 1',
  399. 'episode_number': 1,
  400. 'duration': 228,
  401. 'format_id': r're:^shd',
  402. },
  403. }]
  404. def _real_extract(self, url):
  405. return self._extract_episode(url)
  406. class IflixSeriesIE(IflixBaseIE):
  407. _VALID_URL = IflixBaseIE._VALID_URL_BASE + r'/(?P<id>\w+)(?:-[^/?#]+)?/?(?:[?#]|$)'
  408. _TESTS = [{
  409. 'url': 'https://www.iflix.com/en/play/g21a6qk4u1s9x22-You-Are-My-Hero',
  410. 'info_dict': {
  411. 'id': 'g21a6qk4u1s9x22',
  412. 'title': 'You Are My Hero',
  413. 'description': 'md5:9c4d844bc0799cd3d2b5aed758a2050a',
  414. },
  415. 'playlist_count': 40,
  416. }, {
  417. 'url': 'https://www.iflix.com/play/0s682hc45t0ohll',
  418. 'info_dict': {
  419. 'id': '0s682hc45t0ohll',
  420. 'title': 'Miss Gu Who Is Silent',
  421. 'description': 'md5:a9651d0236f25af06435e845fa2f8c78',
  422. },
  423. 'playlist_count': 20,
  424. }]
  425. def _real_extract(self, url):
  426. return self._extract_series(url, IflixEpisodeIE)