logo

youtube-dl

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

cwtv.py (3840B)


  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .common import InfoExtractor
  4. from ..utils import (
  5. ExtractorError,
  6. int_or_none,
  7. parse_age_limit,
  8. parse_iso8601,
  9. smuggle_url,
  10. str_or_none,
  11. )
  12. class CWTVIE(InfoExtractor):
  13. _VALID_URL = r'https?://(?:www\.)?cw(?:tv(?:pr)?|seed)\.com/(?:shows/)?(?:[^/]+/)+[^?]*\?.*\b(?:play|watch)=(?P<id>[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12})'
  14. _TESTS = [{
  15. 'url': 'http://cwtv.com/shows/arrow/legends-of-yesterday/?play=6b15e985-9345-4f60-baf8-56e96be57c63',
  16. 'info_dict': {
  17. 'id': '6b15e985-9345-4f60-baf8-56e96be57c63',
  18. 'ext': 'mp4',
  19. 'title': 'Legends of Yesterday',
  20. 'description': 'Oliver and Barry Allen take Kendra Saunders and Carter Hall to a remote location to keep them hidden from Vandal Savage while they figure out how to defeat him.',
  21. 'duration': 2665,
  22. 'series': 'Arrow',
  23. 'season_number': 4,
  24. 'season': '4',
  25. 'episode_number': 8,
  26. 'upload_date': '20151203',
  27. 'timestamp': 1449122100,
  28. },
  29. 'params': {
  30. # m3u8 download
  31. 'skip_download': True,
  32. },
  33. 'skip': 'redirect to http://cwtv.com/shows/arrow/',
  34. }, {
  35. 'url': 'http://www.cwseed.com/shows/whose-line-is-it-anyway/jeff-davis-4/?play=24282b12-ead2-42f2-95ad-26770c2c6088',
  36. 'info_dict': {
  37. 'id': '24282b12-ead2-42f2-95ad-26770c2c6088',
  38. 'ext': 'mp4',
  39. 'title': 'Jeff Davis 4',
  40. 'description': 'Jeff Davis is back to make you laugh.',
  41. 'duration': 1263,
  42. 'series': 'Whose Line Is It Anyway?',
  43. 'season_number': 11,
  44. 'episode_number': 20,
  45. 'upload_date': '20151006',
  46. 'timestamp': 1444107300,
  47. 'age_limit': 14,
  48. 'uploader': 'CWTV',
  49. },
  50. 'params': {
  51. # m3u8 download
  52. 'skip_download': True,
  53. },
  54. }, {
  55. 'url': 'http://cwtv.com/thecw/chroniclesofcisco/?play=8adebe35-f447-465f-ab52-e863506ff6d6',
  56. 'only_matching': True,
  57. }, {
  58. 'url': 'http://cwtvpr.com/the-cw/video?watch=9eee3f60-ef4e-440b-b3b2-49428ac9c54e',
  59. 'only_matching': True,
  60. }, {
  61. 'url': 'http://cwtv.com/shows/arrow/legends-of-yesterday/?watch=6b15e985-9345-4f60-baf8-56e96be57c63',
  62. 'only_matching': True,
  63. }]
  64. def _real_extract(self, url):
  65. video_id = self._match_id(url)
  66. data = self._download_json(
  67. 'http://images.cwtv.com/feed/mobileapp/video-meta/apiversion_8/guid_' + video_id,
  68. video_id)
  69. if data.get('result') != 'ok':
  70. raise ExtractorError(data['msg'], expected=True)
  71. video_data = data['video']
  72. title = video_data['title']
  73. mpx_url = video_data.get('mpx_url') or 'http://link.theplatform.com/s/cwtv/media/guid/2703454149/%s?formats=M3U' % video_id
  74. season = str_or_none(video_data.get('season'))
  75. episode = str_or_none(video_data.get('episode'))
  76. if episode and season:
  77. episode = episode[len(season):]
  78. return {
  79. '_type': 'url_transparent',
  80. 'id': video_id,
  81. 'title': title,
  82. 'url': smuggle_url(mpx_url, {'force_smil_url': True}),
  83. 'description': video_data.get('description_long'),
  84. 'duration': int_or_none(video_data.get('duration_secs')),
  85. 'series': video_data.get('series_name'),
  86. 'season_number': int_or_none(season),
  87. 'episode_number': int_or_none(episode),
  88. 'timestamp': parse_iso8601(video_data.get('start_time')),
  89. 'age_limit': parse_age_limit(video_data.get('rating')),
  90. 'ie_key': 'ThePlatform',
  91. }