xinpianchang.py 3.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. from .common import InfoExtractor
  2. from ..utils import (
  3. int_or_none,
  4. str_or_none,
  5. try_get,
  6. update_url_query,
  7. url_or_none,
  8. )
  9. class XinpianchangIE(InfoExtractor):
  10. _WORKING = False
  11. _VALID_URL = r'https?://www\.xinpianchang\.com/(?P<id>[^/]+?)(?:\D|$)'
  12. IE_NAME = 'xinpianchang'
  13. IE_DESC = 'xinpianchang.com'
  14. _TESTS = [{
  15. 'url': 'https://www.xinpianchang.com/a11766551',
  16. 'info_dict': {
  17. 'id': 'a11766551',
  18. 'ext': 'mp4',
  19. 'title': '北京2022冬奥会闭幕式再见短片-冰墩墩下班了',
  20. 'description': 'md5:4a730c10639a82190fabe921c0fa4b87',
  21. 'duration': 151,
  22. 'thumbnail': r're:^https?://oss-xpc0\.xpccdn\.com.+/assets/',
  23. 'uploader': '正时文创',
  24. 'uploader_id': '10357277',
  25. 'categories': ['宣传片', '国家城市', '广告', '其他'],
  26. 'tags': ['北京冬奥会', '冰墩墩', '再见', '告别', '冰墩墩哭了', '感动', '闭幕式', '熄火'],
  27. },
  28. }, {
  29. 'url': 'https://www.xinpianchang.com/a11762904',
  30. 'info_dict': {
  31. 'id': 'a11762904',
  32. 'ext': 'mp4',
  33. 'title': '冬奥会决胜时刻《法国派出三只鸡?》',
  34. 'description': 'md5:55cb139ef8f48f0c877932d1f196df8b',
  35. 'duration': 136,
  36. 'thumbnail': r're:^https?://oss-xpc0\.xpccdn\.com.+/assets/',
  37. 'uploader': '精品动画',
  38. 'uploader_id': '10858927',
  39. 'categories': ['动画', '三维CG'],
  40. 'tags': ['France Télévisions', '法国3台', '蠢萌', '冬奥会'],
  41. },
  42. }, {
  43. 'url': 'https://www.xinpianchang.com/a11779743?from=IndexPick&part=%E7%BC%96%E8%BE%91%E7%B2%BE%E9%80%89&index=2',
  44. 'only_matching': True,
  45. }]
  46. def _real_extract(self, url):
  47. video_id = self._match_id(url)
  48. webpage = self._download_webpage(url, video_id=video_id)
  49. domain = self.find_value_with_regex(var='requireNewDomain', webpage=webpage)
  50. vid = self.find_value_with_regex(var='vid', webpage=webpage)
  51. app_key = self.find_value_with_regex(var='modeServerAppKey', webpage=webpage)
  52. api = update_url_query(f'{domain}/mod/api/v2/media/{vid}', {'appKey': app_key})
  53. data = self._download_json(api, video_id=video_id)['data']
  54. formats, subtitles = [], {}
  55. for k, v in data.get('resource').items():
  56. if k in ('dash', 'hls'):
  57. v_url = v.get('url')
  58. if not v_url:
  59. continue
  60. if k == 'dash':
  61. fmts, subs = self._extract_mpd_formats_and_subtitles(v_url, video_id=video_id)
  62. elif k == 'hls':
  63. fmts, subs = self._extract_m3u8_formats_and_subtitles(v_url, video_id=video_id)
  64. formats.extend(fmts)
  65. subtitles = self._merge_subtitles(subtitles, subs)
  66. elif k == 'progressive':
  67. formats.extend([{
  68. 'url': url_or_none(prog.get('url')),
  69. 'width': int_or_none(prog.get('width')),
  70. 'height': int_or_none(prog.get('height')),
  71. 'ext': 'mp4',
  72. } for prog in v if prog.get('url') or []])
  73. return {
  74. 'id': video_id,
  75. 'title': data.get('title'),
  76. 'description': data.get('description'),
  77. 'duration': int_or_none(data.get('duration')),
  78. 'categories': data.get('categories'),
  79. 'tags': data.get('keywords'),
  80. 'thumbnail': data.get('cover'),
  81. 'uploader': try_get(data, lambda x: x['owner']['username']),
  82. 'uploader_id': str_or_none(try_get(data, lambda x: x['owner']['id'])),
  83. 'formats': formats,
  84. 'subtitles': subtitles,
  85. }
  86. def find_value_with_regex(self, var, webpage):
  87. return self._search_regex(rf'var\s{var}\s=\s\"(?P<vid>[^\"]+)\"', webpage, name=var)