logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

litv.py (5516B)


  1. import json
  2. import uuid
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. ExtractorError,
  6. int_or_none,
  7. join_nonempty,
  8. smuggle_url,
  9. traverse_obj,
  10. try_call,
  11. unsmuggle_url,
  12. urljoin,
  13. )
  14. class LiTVIE(InfoExtractor):
  15. _VALID_URL = r'https?://(?:www\.)?litv\.tv/(?:[^/?#]+/watch/|vod/[^/?#]+/content\.do\?content_id=)(?P<id>[\w-]+)'
  16. _URL_TEMPLATE = 'https://www.litv.tv/%s/watch/%s'
  17. _GEO_COUNTRIES = ['TW']
  18. _TESTS = [{
  19. 'url': 'https://www.litv.tv/drama/watch/VOD00041610',
  20. 'info_dict': {
  21. 'id': 'VOD00041606',
  22. 'title': '花千骨',
  23. },
  24. 'playlist_count': 51, # 50 episodes + 1 trailer
  25. }, {
  26. 'url': 'https://www.litv.tv/drama/watch/VOD00041610',
  27. 'md5': 'b90ff1e9f1d8f5cfcd0a44c3e2b34c7a',
  28. 'info_dict': {
  29. 'id': 'VOD00041610',
  30. 'ext': 'mp4',
  31. 'title': '花千骨第1集',
  32. 'thumbnail': r're:https?://.*\.jpg$',
  33. 'description': '《花千骨》陸劇線上看。十六年前,平靜的村莊內,一名女嬰隨異相出生,途徑此地的蜀山掌門清虛道長算出此女命運非同一般,她體內散發的異香易招惹妖魔。一念慈悲下,他在村莊周邊設下結界阻擋妖魔入侵,讓其年滿十六後去蜀山,並賜名花千骨。',
  34. 'categories': ['奇幻', '愛情', '仙俠', '古裝'],
  35. 'episode': 'Episode 1',
  36. 'episode_number': 1,
  37. },
  38. 'params': {
  39. 'noplaylist': True,
  40. },
  41. }, {
  42. 'url': 'https://www.litv.tv/drama/watch/VOD00044841',
  43. 'md5': '88322ea132f848d6e3e18b32a832b918',
  44. 'info_dict': {
  45. 'id': 'VOD00044841',
  46. 'ext': 'mp4',
  47. 'title': '芈月傳第1集 霸星芈月降世楚國',
  48. 'description': '楚威王二年,太史令唐昧夜觀星象,發現霸星即將現世。王后得知霸星的預言後,想盡辦法不讓孩子順利出生,幸得莒姬相護化解危機。沒想到眾人期待下出生的霸星卻是位公主,楚威王對此失望至極。楚王后命人將女嬰丟棄河中,居然奇蹟似的被少司命像攔下,楚威王認為此女非同凡響,為她取名芈月。',
  49. },
  50. 'skip': 'No longer exists',
  51. }]
  52. def _extract_playlist(self, playlist_data, content_type):
  53. all_episodes = [
  54. self.url_result(smuggle_url(
  55. self._URL_TEMPLATE % (content_type, episode['content_id']),
  56. {'force_noplaylist': True})) # To prevent infinite recursion
  57. for episode in traverse_obj(playlist_data, ('seasons', ..., 'episodes', lambda _, v: v['content_id']))]
  58. return self.playlist_result(all_episodes, playlist_data['content_id'], playlist_data.get('title'))
  59. def _real_extract(self, url):
  60. url, smuggled_data = unsmuggle_url(url, {})
  61. video_id = self._match_id(url)
  62. webpage = self._download_webpage(url, video_id)
  63. vod_data = self._search_nextjs_data(webpage, video_id)['props']['pageProps']
  64. program_info = traverse_obj(vod_data, ('programInformation', {dict})) or {}
  65. playlist_data = traverse_obj(vod_data, ('seriesTree'))
  66. if playlist_data and self._yes_playlist(program_info.get('series_id'), video_id, smuggled_data):
  67. return self._extract_playlist(playlist_data, program_info.get('content_type'))
  68. asset_id = traverse_obj(program_info, ('assets', 0, 'asset_id', {str}))
  69. if asset_id: # This is a VOD
  70. media_type = 'vod'
  71. else: # This is a live stream
  72. asset_id = program_info['content_id']
  73. media_type = program_info['content_type']
  74. puid = try_call(lambda: self._get_cookies('https://www.litv.tv/')['PUID'].value)
  75. if puid:
  76. endpoint = 'get-urls'
  77. else:
  78. puid = str(uuid.uuid4())
  79. endpoint = 'get-urls-no-auth'
  80. video_data = self._download_json(
  81. f'https://www.litv.tv/api/{endpoint}', video_id,
  82. data=json.dumps({'AssetId': asset_id, 'MediaType': media_type, 'puid': puid}).encode(),
  83. headers={'Content-Type': 'application/json'})
  84. if error := traverse_obj(video_data, ('error', {dict})):
  85. error_msg = traverse_obj(error, ('message', {str}))
  86. if error_msg and 'OutsideRegionError' in error_msg:
  87. self.raise_geo_restricted('This video is available in Taiwan only')
  88. elif error_msg:
  89. raise ExtractorError(f'{self.IE_NAME} said: {error_msg}', expected=True)
  90. raise ExtractorError(f'Unexpected error from {self.IE_NAME}')
  91. formats = self._extract_m3u8_formats(
  92. video_data['result']['AssetURLs'][0], video_id, ext='mp4', m3u8_id='hls')
  93. for a_format in formats:
  94. # LiTV HLS segments doesn't like compressions
  95. a_format.setdefault('http_headers', {})['Accept-Encoding'] = 'identity'
  96. return {
  97. 'id': video_id,
  98. 'formats': formats,
  99. 'title': join_nonempty('title', 'secondary_mark', delim='', from_dict=program_info),
  100. **traverse_obj(program_info, {
  101. 'description': ('description', {str}),
  102. 'thumbnail': ('picture', {urljoin('https://p-cdnstatic.svc.litv.tv/')}),
  103. 'categories': ('genres', ..., 'name', {str}),
  104. 'episode_number': ('episode', {int_or_none}),
  105. }),
  106. }