togglesg.py 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import json
  4. import re
  5. import itertools
  6. from .common import InfoExtractor
  7. from ..utils import (
  8. ExtractorError,
  9. int_or_none,
  10. determine_ext,
  11. parse_iso8601,
  12. remove_end,
  13. sanitized_Request,
  14. )
  15. from ..compat import compat_urllib_request
  16. class ToggleSgIE(InfoExtractor):
  17. IE_NAME = 'togglesg'
  18. _VALID_URL = r'https?://video\.toggle\.sg/(?:en|zh)/(?:series|clips|movies)/.+?/(?P<id>[0-9]+)'
  19. _TESTS = [{
  20. 'url': 'http://video.toggle.sg/en/series/lion-moms-tif/trailers/lion-moms-premier/343115',
  21. 'info_dict': {
  22. 'id': '343115',
  23. 'ext': 'mp4',
  24. 'title': 'Lion Moms Premiere',
  25. 'description': 'md5:aea1149404bff4d7f7b6da11fafd8e6b',
  26. 'upload_date': '20150910',
  27. 'timestamp': 1441858274,
  28. },
  29. 'params': {
  30. 'skip_download': 'm3u8 download',
  31. }
  32. }, {
  33. 'note': 'DRM-protected video',
  34. 'url': 'http://video.toggle.sg/en/movies/dug-s-special-mission/341413',
  35. 'info_dict': {
  36. 'id': '341413',
  37. 'ext': 'wvm',
  38. 'title': 'Dug\'s Special Mission',
  39. 'description': 'md5:e86c6f4458214905c1772398fabc93e0',
  40. 'upload_date': '20150827',
  41. 'timestamp': 1440644006,
  42. },
  43. 'params': {
  44. 'skip_download': 'DRM-protected wvm download',
  45. }
  46. }, {
  47. 'note': 'm3u8 links are geo-restricted, but Android/mp4 is okay',
  48. 'url': 'http://video.toggle.sg/en/series/28th-sea-games-5-show/ep11/332861',
  49. 'info_dict': {
  50. 'id': '332861',
  51. 'ext': 'mp4',
  52. 'title': '28th SEA Games (5 Show) - Episode 11',
  53. 'description': 'md5:3cd4f5f56c7c3b1340c50a863f896faa',
  54. 'upload_date': '20150605',
  55. 'timestamp': 1433480166,
  56. },
  57. 'params': {
  58. 'skip_download': 'DRM-protected wvm download',
  59. },
  60. 'skip': 'm3u8 links are geo-restricted'
  61. }, {
  62. 'url': 'http://video.toggle.sg/en/clips/seraph-sun-aloysius-will-suddenly-sing-some-old-songs-in-high-pitch-on-set/343331',
  63. 'only_matching': True,
  64. }, {
  65. 'url': 'http://video.toggle.sg/zh/series/zero-calling-s2-hd/ep13/336367',
  66. 'only_matching': True,
  67. }, {
  68. 'url': 'http://video.toggle.sg/en/series/vetri-s2/webisodes/jeeva-is-an-orphan-vetri-s2-webisode-7/342302',
  69. 'only_matching': True,
  70. }, {
  71. 'url': 'http://video.toggle.sg/en/movies/seven-days/321936',
  72. 'only_matching': True,
  73. }]
  74. _FORMAT_PREFERENCES = {
  75. 'wvm-STBMain': -10,
  76. 'wvm-iPadMain': -20,
  77. 'wvm-iPhoneMain': -30,
  78. 'wvm-Android': -40,
  79. }
  80. _API_USER = 'tvpapi_147'
  81. _API_PASS = '11111'
  82. def _real_extract(self, url):
  83. video_id = self._match_id(url)
  84. webpage = self._download_webpage(url, video_id, note='Downloading video page')
  85. api_user = self._search_regex(
  86. r'apiUser:\s*"([^"]+)"', webpage, 'apiUser', default=self._API_USER)
  87. api_pass = self._search_regex(
  88. r'apiPass:\s*"([^"]+)"', webpage, 'apiPass', default=self._API_PASS)
  89. params = {
  90. 'initObj': {
  91. 'Locale': {
  92. 'LocaleLanguage': '', 'LocaleCountry': '',
  93. 'LocaleDevice': '', 'LocaleUserState': 0
  94. },
  95. 'Platform': 0, 'SiteGuid': 0, 'DomainID': '0', 'UDID': '',
  96. 'ApiUser': api_user, 'ApiPass': api_pass
  97. },
  98. 'MediaID': video_id,
  99. 'mediaType': 0,
  100. }
  101. req = sanitized_Request(
  102. 'http://tvpapi.as.tvinci.com/v2_9/gateways/jsonpostgw.aspx?m=GetMediaInfo',
  103. json.dumps(params).encode('utf-8'))
  104. info = self._download_json(req, video_id, 'Downloading video info json')
  105. title = info['MediaName']
  106. duration = int_or_none(info.get('Duration'))
  107. thumbnail = info.get('PicURL')
  108. description = info.get('Description')
  109. created_at = parse_iso8601(info.get('CreationDate') or None)
  110. formats = []
  111. for video_file in info.get('Files', []):
  112. ext = determine_ext(video_file['URL'])
  113. vid_format = video_file['Format'].replace(' ', '')
  114. # if geo-restricted, m3u8 is inaccessible, but mp4 is okay
  115. if ext == 'm3u8':
  116. m3u8_formats = self._extract_m3u8_formats(
  117. video_file['URL'], video_id, ext='mp4', m3u8_id=vid_format,
  118. note='Downloading %s m3u8 information' % vid_format,
  119. errnote='Failed to download %s m3u8 information' % vid_format,
  120. fatal=False
  121. )
  122. if m3u8_formats:
  123. formats.extend(m3u8_formats)
  124. if ext in ['mp4', 'wvm']:
  125. # wvm are drm-protected files
  126. formats.append({
  127. 'ext': ext,
  128. 'url': video_file['URL'],
  129. 'format_id': vid_format,
  130. 'preference': self._FORMAT_PREFERENCES.get(ext + '-' + vid_format) or -1,
  131. 'format_note': 'DRM-protected video' if ext == 'wvm' else None
  132. })
  133. if not formats:
  134. # Most likely because geo-blocked
  135. raise ExtractorError('No downloadable videos found', expected=True)
  136. self._sort_formats(formats)
  137. return {
  138. 'id': video_id,
  139. 'title': title,
  140. 'description': description,
  141. 'duration': duration,
  142. 'timestamp': created_at,
  143. 'thumbnail': thumbnail,
  144. 'formats': formats,
  145. }