viewster.py 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..compat import (
  5. compat_HTTPError,
  6. compat_urllib_request,
  7. compat_urllib_parse,
  8. compat_urllib_parse_unquote,
  9. )
  10. from ..utils import (
  11. determine_ext,
  12. ExtractorError,
  13. int_or_none,
  14. parse_iso8601,
  15. HEADRequest,
  16. )
  17. class ViewsterIE(InfoExtractor):
  18. _VALID_URL = r'https?://(?:www\.)?viewster\.com/(?:serie|movie)/(?P<id>\d+-\d+-\d+)'
  19. _TESTS = [{
  20. # movie, Type=Movie
  21. 'url': 'http://www.viewster.com/movie/1140-11855-000/the-listening-project/',
  22. 'md5': 'e642d1b27fcf3a4ffa79f194f5adde36',
  23. 'info_dict': {
  24. 'id': '1140-11855-000',
  25. 'ext': 'mp4',
  26. 'title': 'The listening Project',
  27. 'description': 'md5:bac720244afd1a8ea279864e67baa071',
  28. 'timestamp': 1214870400,
  29. 'upload_date': '20080701',
  30. 'duration': 4680,
  31. },
  32. }, {
  33. # series episode, Type=Episode
  34. 'url': 'http://www.viewster.com/serie/1284-19427-001/the-world-and-a-wall/',
  35. 'md5': '9243079a8531809efe1b089db102c069',
  36. 'info_dict': {
  37. 'id': '1284-19427-001',
  38. 'ext': 'mp4',
  39. 'title': 'The World and a Wall',
  40. 'description': 'md5:24814cf74d3453fdf5bfef9716d073e3',
  41. 'timestamp': 1428192000,
  42. 'upload_date': '20150405',
  43. 'duration': 1500,
  44. },
  45. }, {
  46. # serie, Type=Serie
  47. 'url': 'http://www.viewster.com/serie/1303-19426-000/',
  48. 'info_dict': {
  49. 'id': '1303-19426-000',
  50. 'title': 'Is It Wrong to Try to Pick up Girls in a Dungeon?',
  51. 'description': 'md5:eeda9bef25b0d524b3a29a97804c2f11',
  52. },
  53. 'playlist_count': 13,
  54. }, {
  55. # unfinished serie, no Type
  56. 'url': 'http://www.viewster.com/serie/1284-19427-000/baby-steps-season-2/',
  57. 'info_dict': {
  58. 'id': '1284-19427-000',
  59. 'title': 'Baby Steps—Season 2',
  60. 'description': 'md5:e7097a8fc97151e25f085c9eb7a1cdb1',
  61. },
  62. 'playlist_mincount': 16,
  63. }]
  64. _ACCEPT_HEADER = 'application/json, text/javascript, */*; q=0.01'
  65. def _download_json(self, url, video_id, note='Downloading JSON metadata', fatal=True):
  66. request = compat_urllib_request.Request(url)
  67. request.add_header('Accept', self._ACCEPT_HEADER)
  68. request.add_header('Auth-token', self._AUTH_TOKEN)
  69. return super(ViewsterIE, self)._download_json(request, video_id, note, fatal=fatal)
  70. def _real_extract(self, url):
  71. video_id = self._match_id(url)
  72. # Get 'api_token' cookie
  73. self._request_webpage(HEADRequest('http://www.viewster.com/'), video_id)
  74. cookies = self._get_cookies('http://www.viewster.com/')
  75. self._AUTH_TOKEN = compat_urllib_parse_unquote(cookies['api_token'].value)
  76. info = self._download_json(
  77. 'https://public-api.viewster.com/search/%s' % video_id,
  78. video_id, 'Downloading entry JSON')
  79. entry_id = info.get('Id') or info['id']
  80. # unfinished serie has no Type
  81. if info.get('Type') in ['Serie', None]:
  82. try:
  83. episodes = self._download_json(
  84. 'https://public-api.viewster.com/series/%s/episodes' % entry_id,
  85. video_id, 'Downloading series JSON')
  86. except ExtractorError as e:
  87. if isinstance(e.cause, compat_HTTPError) and e.cause.code == 404:
  88. self.raise_geo_restricted()
  89. else:
  90. raise
  91. entries = [
  92. self.url_result(
  93. 'http://www.viewster.com/movie/%s' % episode['OriginId'], 'Viewster')
  94. for episode in episodes]
  95. title = (info.get('Title') or info['Synopsis']['Title']).strip()
  96. description = info.get('Synopsis', {}).get('Detailed')
  97. return self.playlist_result(entries, video_id, title, description)
  98. formats = []
  99. for media_type in ('application/f4m+xml', 'application/x-mpegURL', 'video/mp4'):
  100. media = self._download_json(
  101. 'https://public-api.viewster.com/movies/%s/video?mediaType=%s'
  102. % (entry_id, compat_urllib_parse.quote(media_type)),
  103. video_id, 'Downloading %s JSON' % media_type, fatal=False)
  104. if not media:
  105. continue
  106. video_url = media.get('Uri')
  107. if not video_url:
  108. continue
  109. ext = determine_ext(video_url)
  110. if ext == 'f4m':
  111. video_url += '&' if '?' in video_url else '?'
  112. video_url += 'hdcore=3.2.0&plugin=flowplayer-3.2.0.1'
  113. formats.extend(self._extract_f4m_formats(
  114. video_url, video_id, f4m_id='hds'))
  115. elif ext == 'm3u8':
  116. formats.extend(self._extract_m3u8_formats(
  117. video_url, video_id, 'mp4', m3u8_id='hls',
  118. fatal=False # m3u8 sometimes fail
  119. ))
  120. else:
  121. format_id = media.get('Bitrate')
  122. f = {
  123. 'url': video_url,
  124. 'format_id': 'mp4-%s' % format_id,
  125. 'height': int_or_none(media.get('Height')),
  126. 'width': int_or_none(media.get('Width')),
  127. 'preference': 1,
  128. }
  129. if format_id and not f['height']:
  130. f['height'] = int_or_none(self._search_regex(
  131. r'^(\d+)[pP]$', format_id, 'height', default=None))
  132. formats.append(f)
  133. self._sort_formats(formats)
  134. synopsis = info.get('Synopsis', {})
  135. # Prefer title outside synopsis since it's less messy
  136. title = (info.get('Title') or synopsis['Title']).strip()
  137. description = synopsis.get('Detailed') or info.get('Synopsis', {}).get('Short')
  138. duration = int_or_none(info.get('Duration'))
  139. timestamp = parse_iso8601(info.get('ReleaseDate'))
  140. return {
  141. 'id': video_id,
  142. 'title': title,
  143. 'description': description,
  144. 'timestamp': timestamp,
  145. 'duration': duration,
  146. 'formats': formats,
  147. }