comedycentral.py 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. from __future__ import unicode_literals
  2. from .mtv import MTVServicesInfoExtractor
  3. from .common import InfoExtractor
  4. class ComedyCentralIE(MTVServicesInfoExtractor):
  5. _VALID_URL = r'''(?x)https?://(?:www\.)?cc\.com/
  6. (video-clips|episodes|cc-studios|video-collections|shows)
  7. /(?P<title>.*)'''
  8. _FEED_URL = 'http://comedycentral.com/feeds/mrss/'
  9. _TESTS = [{
  10. 'url': 'http://www.cc.com/video-clips/kllhuv/stand-up-greg-fitzsimmons--uncensored---too-good-of-a-mother',
  11. 'md5': 'c4f48e9eda1b16dd10add0744344b6d8',
  12. 'info_dict': {
  13. 'id': 'cef0cbb3-e776-4bc9-b62e-8016deccb354',
  14. 'ext': 'mp4',
  15. 'title': 'CC:Stand-Up|August 18, 2013|1|0101|Uncensored - Too Good of a Mother',
  16. 'description': 'After a certain point, breastfeeding becomes c**kblocking.',
  17. 'timestamp': 1376798400,
  18. 'upload_date': '20130818',
  19. },
  20. }, {
  21. 'url': 'http://www.cc.com/shows/the-daily-show-with-trevor-noah/interviews/6yx39d/exclusive-rand-paul-extended-interview',
  22. 'only_matching': True,
  23. }]
  24. class ComedyCentralFullEpisodesIE(MTVServicesInfoExtractor):
  25. _VALID_URL = r'''(?x)https?://(?:www\.)?cc\.com/
  26. (?:full-episodes)
  27. /(?P<id>[^?]+)'''
  28. _FEED_URL = 'http://comedycentral.com/feeds/mrss/'
  29. _TESTS = [{
  30. 'url': 'http://www.cc.com/full-episodes/pv391a/the-daily-show-with-trevor-noah-november-28--2016---ryan-speedo-green-season-22-ep-22028',
  31. 'info_dict': {
  32. 'description': 'Donald Trump is accused of exploiting his president-elect status for personal gain, Cuban leader Fidel Castro dies, and Ryan Speedo Green discusses "Sing for Your Life."',
  33. 'title': 'November 28, 2016 - Ryan Speedo Green',
  34. },
  35. 'playlist_count': 4,
  36. }]
  37. def _real_extract(self, url):
  38. playlist_id = self._match_id(url)
  39. webpage = self._download_webpage(url, playlist_id)
  40. feed_json = self._search_regex(r'var triforceManifestFeed\s*=\s*(\{.+?\});\n', webpage, 'triforce feeed')
  41. feed = self._parse_json(feed_json, playlist_id)
  42. zones = feed['manifest']['zones']
  43. video_zone = zones['t2_lc_promo1']
  44. feed = self._download_json(video_zone['feed'], playlist_id)
  45. mgid = feed['result']['data']['id']
  46. videos_info = self._get_videos_info(mgid)
  47. return videos_info
  48. class ToshIE(MTVServicesInfoExtractor):
  49. IE_DESC = 'Tosh.0'
  50. _VALID_URL = r'^https?://tosh\.cc\.com/video-(?:clips|collections)/[^/]+/(?P<videotitle>[^/?#]+)'
  51. _FEED_URL = 'http://tosh.cc.com/feeds/mrss'
  52. _TESTS = [{
  53. 'url': 'http://tosh.cc.com/video-clips/68g93d/twitter-users-share-summer-plans',
  54. 'info_dict': {
  55. 'description': 'Tosh asked fans to share their summer plans.',
  56. 'title': 'Twitter Users Share Summer Plans',
  57. },
  58. 'playlist': [{
  59. 'md5': 'f269e88114c1805bb6d7653fecea9e06',
  60. 'info_dict': {
  61. 'id': '90498ec2-ed00-11e0-aca6-0026b9414f30',
  62. 'ext': 'mp4',
  63. 'title': 'Tosh.0|June 9, 2077|2|211|Twitter Users Share Summer Plans',
  64. 'description': 'Tosh asked fans to share their summer plans.',
  65. 'thumbnail': 're:^https?://.*\.jpg',
  66. # It's really reported to be published on year 2077
  67. 'upload_date': '20770610',
  68. 'timestamp': 3390510600,
  69. 'subtitles': {
  70. 'en': 'mincount:3',
  71. },
  72. },
  73. }]
  74. }, {
  75. 'url': 'http://tosh.cc.com/video-collections/x2iz7k/just-plain-foul/m5q4fp',
  76. 'only_matching': True,
  77. }]
  78. @classmethod
  79. def _transform_rtmp_url(cls, rtmp_video_url):
  80. new_urls = super(ToshIE, cls)._transform_rtmp_url(rtmp_video_url)
  81. new_urls['rtmp'] = rtmp_video_url.replace('viacomccstrm', 'viacommtvstrm')
  82. return new_urls
  83. class ComedyCentralTVIE(MTVServicesInfoExtractor):
  84. _VALID_URL = r'https?://(?:www\.)?comedycentral\.tv/(?:staffeln|shows)/(?P<id>[^/?#&]+)'
  85. _TESTS = [{
  86. 'url': 'http://www.comedycentral.tv/staffeln/7436-the-mindy-project-staffel-4',
  87. 'info_dict': {
  88. 'id': 'local_playlist-f99b626bdfe13568579a',
  89. 'ext': 'flv',
  90. 'title': 'Episode_the-mindy-project_shows_season-4_episode-3_full-episode_part1',
  91. },
  92. 'params': {
  93. # rtmp download
  94. 'skip_download': True,
  95. },
  96. }, {
  97. 'url': 'http://www.comedycentral.tv/shows/1074-workaholics',
  98. 'only_matching': True,
  99. }, {
  100. 'url': 'http://www.comedycentral.tv/shows/1727-the-mindy-project/bonus',
  101. 'only_matching': True,
  102. }]
  103. def _real_extract(self, url):
  104. video_id = self._match_id(url)
  105. webpage = self._download_webpage(url, video_id)
  106. mrss_url = self._search_regex(
  107. r'data-mrss=(["\'])(?P<url>(?:(?!\1).)+)\1',
  108. webpage, 'mrss url', group='url')
  109. return self._get_videos_info_from_url(mrss_url, video_id)
  110. class ComedyCentralShortnameIE(InfoExtractor):
  111. _VALID_URL = r'^:(?P<id>tds|thedailyshow)$'
  112. _TESTS = [{
  113. 'url': ':tds',
  114. 'only_matching': True,
  115. }, {
  116. 'url': ':thedailyshow',
  117. 'only_matching': True,
  118. }]
  119. def _real_extract(self, url):
  120. video_id = self._match_id(url)
  121. shortcut_map = {
  122. 'tds': 'http://www.cc.com/shows/the-daily-show-with-trevor-noah/full-episodes',
  123. 'thedailyshow': 'http://www.cc.com/shows/the-daily-show-with-trevor-noah/full-episodes',
  124. }
  125. return self.url_result(shortcut_map[video_id])