logo

youtube-dl

[mirror] Download/Watch videos from video hostersgit clone https://hacktivis.me/git/mirror/youtube-dl.git

toggle.py (8970B)


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