hketv.py 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..compat import compat_str
  5. from ..utils import (
  6. clean_html,
  7. ExtractorError,
  8. int_or_none,
  9. merge_dicts,
  10. str_or_none,
  11. str_to_int,
  12. try_get,
  13. unified_strdate,
  14. urlencode_postdata,
  15. urljoin,
  16. )
  17. class HKETVIE(InfoExtractor):
  18. IE_NAME = 'hketv'
  19. IE_DESC = '香港教育局教育電視 (HKETV) Educational Television, Hong Kong Educational Bureau'
  20. _GEO_BYPASS = False
  21. _GEO_COUNTRIES = ['HK']
  22. _VALID_URL = r'https?://(?:www\.)?hkedcity\.net/etv/resource/(?P<id>[0-9]+)'
  23. _TESTS = [{
  24. 'url': 'https://www.hkedcity.net/etv/resource/2932360618',
  25. 'md5': 'f193712f5f7abb208ddef3c5ea6ed0b7',
  26. 'info_dict': {
  27. 'id': '2932360618',
  28. 'ext': 'mp4',
  29. 'title': '喜閱一生(共享閱讀樂) (中、英文字幕可供選擇)',
  30. 'description': '本節目輯錄了「閱讀滿Fun嘉年華」和「二○一八響應世界閱讀日――悅愛閱讀・愈讀愈愛」的活動花絮,並由學者、作家、演藝界人士等,分享培養子女閱讀興趣和習慣的方法,以及呼籲大家一同分享閱讀的樂趣。',
  31. 'upload_date': '20181024',
  32. 'duration': 900,
  33. 'subtitles': {
  34. 'en': [{
  35. 'url': 'https://apps.hkedcity.net/media/mediaplayer/caption.php?f=74395&lang=en',
  36. 'ext': 'srt',
  37. }],
  38. 'zh-Hant': [{
  39. 'url': 'https://apps.hkedcity.net/media/mediaplayer/caption.php?f=74395&lang=qmt',
  40. 'ext': 'srt',
  41. }],
  42. }
  43. },
  44. }, {
  45. 'url': 'https://www.hkedcity.net/etv/resource/972641418',
  46. 'md5': '1ed494c1c6cf7866a8290edad9b07dc9',
  47. 'info_dict': {
  48. 'id': '972641418',
  49. 'ext': 'mp4',
  50. 'title': '衣冠楚楚 (天使系列之一)',
  51. 'description': '天國仙境,有兩位可愛的天使小姐妹。她們對幾千年來天使衣著一成不變頗有不滿。她們下望人世間:只見人們穿著七彩繽紛、款式各異的服裝,漂亮極了。天使姐妹決定下凡考察衣著,以設計天使新裝。 下到人間,姐妹試穿各式各樣的衣著,引發連串奇特有趣的情節:她們穿著校服在街上閒逛時,被女警誤認為逃學而送回學校,到校後又被體育老師誤認為是新同學,匆匆忙忙換上運動服後在操場上大顯神通。她們穿著護士服在醫院散步時,又被誤認為當班護士,而投入追尋失蹤病童、治病救人的工作中去。姐妹倆還到過玩具店,與布娃娃們談論衣著。她們也去過服裝設計學校,被當成小模特兒而試穿各式服裝。最令姐妹倆興奮的是一場盛大的民族服裝表演會。身穿盛裝的十二個民族的少女在台上翩翩起舞,各種服飾七彩繽紛、美不勝收。姐妹們情不自禁地穿上民族服裝,小天使變成了少數民族姑娘……最後天使姐妹回到天上,對於天使究竟穿甚麼樣的衣服好,她們還是拿不定主意。 節目通過天使姐妹的奇特經歷,反復示範各式衣服鞋襪的正確讀音及談論衣著時的常用句式,並以盛大的民族服裝表演活動,帶出有關服裝的文化知識。內容豐富而饒有趣味。',
  52. 'upload_date': '20070109',
  53. 'duration': 907,
  54. 'subtitles': {},
  55. },
  56. }]
  57. _CC_LANGS = {
  58. '中文(繁體中文)': 'zh-Hant',
  59. '中文(简体中文)': 'zh-Hans',
  60. 'English': 'en',
  61. 'Bahasa Indonesia': 'id',
  62. '\u0939\u093f\u0928\u094d\u0926\u0940': 'hi',
  63. '\u0928\u0947\u092a\u093e\u0932\u0940': 'ne',
  64. 'Tagalog': 'tl',
  65. '\u0e44\u0e17\u0e22': 'th',
  66. '\u0627\u0631\u062f\u0648': 'ur',
  67. }
  68. def _real_extract(self, url):
  69. video_id = self._match_id(url)
  70. webpage = self._download_webpage(url, video_id)
  71. title = self._html_search_meta('ed_title', webpage, fatal=True)
  72. file_id = self._html_search_regex(r'post_var\["file_id"\]\s*=\s*(.+?);', webpage, 'file ID')
  73. curr_url = self._html_search_regex(r'post_var\["curr_url"\]\s*=\s*"(.+?)";', webpage, 'curr URL')
  74. data = {
  75. 'action': 'get_info',
  76. 'curr_url': curr_url,
  77. 'file_id': file_id,
  78. 'video_url': file_id,
  79. }
  80. _APPS_BASE_URL = 'https://apps.hkedcity.net'
  81. handler_url = _APPS_BASE_URL + '/media/play/handler.php'
  82. response = self._download_json(
  83. handler_url, video_id,
  84. data=urlencode_postdata(data),
  85. headers=merge_dicts({'Content-Type': 'application/x-www-form-urlencoded'},
  86. self.geo_verification_headers()))
  87. result = response['result']
  88. formats = []
  89. subtitles = {}
  90. if response.get('success') and response.get('access'):
  91. width = int_or_none(result.get('width'))
  92. height = int_or_none(result.get('height'))
  93. playlist0 = try_get(result, lambda x: x['playlist'][0], dict)
  94. fmts = playlist0.get('sources')
  95. for fmt in fmts:
  96. file_path = fmt.get('file')
  97. if file_path:
  98. file_url = urljoin(_APPS_BASE_URL, file_path)
  99. # If we ever wanted to provide the final resolved URL that
  100. # does not require cookies, albeit with a shorter lifespan:
  101. # urlh = self._downloader.urlopen(file_url)
  102. # resolved_url = urlh.geturl()
  103. label = fmt.get('label')
  104. w = None
  105. h = None
  106. if label == 'HD':
  107. h = 720
  108. elif label == 'SD':
  109. h = 360
  110. if h:
  111. if width and height:
  112. w = h * width // height
  113. else:
  114. w = h * 4 // 3
  115. formats.append({
  116. 'format_id': label,
  117. 'ext': fmt.get('type'),
  118. 'url': file_url,
  119. 'width': w,
  120. 'height': h,
  121. })
  122. tracks = playlist0.get('tracks', [])
  123. for track in tracks:
  124. if not isinstance(track, dict):
  125. continue
  126. track_kind = str_or_none(track.get('kind'))
  127. if not track_kind or not isinstance(track_kind, compat_str):
  128. continue
  129. if track_kind.lower() not in ('captions', 'subtitles'):
  130. continue
  131. track_url = urljoin(_APPS_BASE_URL, track.get('file'))
  132. if not track_url:
  133. continue
  134. track_label = track.get('label')
  135. subtitles.setdefault(self._CC_LANGS.get(track_label, track_label), []).append({
  136. 'url': self._proto_relative_url(track_url),
  137. 'ext': 'srt',
  138. })
  139. else:
  140. error = clean_html(response.get('access_err_msg'))
  141. if 'Video streaming is not available in your country' in error:
  142. self.raise_geo_restricted(msg=error, countries=self._GEO_COUNTRIES)
  143. else:
  144. raise ExtractorError(error)
  145. # Likes
  146. emotion = self._download_json(
  147. 'https://emocounter.hkedcity.net/handler.php',
  148. video_id,
  149. data=urlencode_postdata({
  150. 'action': 'get_emotion',
  151. 'data[bucket_id]': 'etv',
  152. 'data[identifier]': video_id,
  153. }),
  154. headers={'Content-Type': 'application/x-www-form-urlencoded'},
  155. fatal=False)
  156. like_count = int_or_none(try_get(emotion, lambda x: x['data']['emotion_data'][0]['count']))
  157. return {
  158. 'id': video_id,
  159. 'title': title,
  160. 'description': self._html_search_meta('description', webpage, fatal=False),
  161. 'upload_date': unified_strdate(self._html_search_meta('ed_date', webpage, fatal=False), day_first=False),
  162. 'duration': int_or_none(result.get('length')),
  163. 'formats': formats,
  164. 'subtitles': subtitles,
  165. 'thumbnail': urljoin(_APPS_BASE_URL, result.get('image')),
  166. 'view_count': str_to_int(result.get('view_count')),
  167. 'like_count': like_count,
  168. }