You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

138 lines
5.2 KiB

10 years ago
  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(?=/[^/]+/(?!full-episodes)))
  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|shows(?=/[^/]+/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. 'url': 'http://www.cc.com/shows/the-daily-show-with-trevor-noah/full-episodes',
  38. 'only_matching': True,
  39. }]
  40. def _real_extract(self, url):
  41. playlist_id = self._match_id(url)
  42. webpage = self._download_webpage(url, playlist_id)
  43. mgid = self._extract_triforce_mgid(webpage, data_zone='t2_lc_promo1')
  44. videos_info = self._get_videos_info(mgid)
  45. return videos_info
  46. class ToshIE(MTVServicesInfoExtractor):
  47. IE_DESC = 'Tosh.0'
  48. _VALID_URL = r'^https?://tosh\.cc\.com/video-(?:clips|collections)/[^/]+/(?P<videotitle>[^/?#]+)'
  49. _FEED_URL = 'http://tosh.cc.com/feeds/mrss'
  50. _TESTS = [{
  51. 'url': 'http://tosh.cc.com/video-clips/68g93d/twitter-users-share-summer-plans',
  52. 'info_dict': {
  53. 'description': 'Tosh asked fans to share their summer plans.',
  54. 'title': 'Twitter Users Share Summer Plans',
  55. },
  56. 'playlist': [{
  57. 'md5': 'f269e88114c1805bb6d7653fecea9e06',
  58. 'info_dict': {
  59. 'id': '90498ec2-ed00-11e0-aca6-0026b9414f30',
  60. 'ext': 'mp4',
  61. 'title': 'Tosh.0|June 9, 2077|2|211|Twitter Users Share Summer Plans',
  62. 'description': 'Tosh asked fans to share their summer plans.',
  63. 'thumbnail': r're:^https?://.*\.jpg',
  64. # It's really reported to be published on year 2077
  65. 'upload_date': '20770610',
  66. 'timestamp': 3390510600,
  67. 'subtitles': {
  68. 'en': 'mincount:3',
  69. },
  70. },
  71. }]
  72. }, {
  73. 'url': 'http://tosh.cc.com/video-collections/x2iz7k/just-plain-foul/m5q4fp',
  74. 'only_matching': True,
  75. }]
  76. class ComedyCentralTVIE(MTVServicesInfoExtractor):
  77. _VALID_URL = r'https?://(?:www\.)?comedycentral\.tv/(?:staffeln|shows)/(?P<id>[^/?#&]+)'
  78. _TESTS = [{
  79. 'url': 'http://www.comedycentral.tv/staffeln/7436-the-mindy-project-staffel-4',
  80. 'info_dict': {
  81. 'id': 'local_playlist-f99b626bdfe13568579a',
  82. 'ext': 'flv',
  83. 'title': 'Episode_the-mindy-project_shows_season-4_episode-3_full-episode_part1',
  84. },
  85. 'params': {
  86. # rtmp download
  87. 'skip_download': True,
  88. },
  89. }, {
  90. 'url': 'http://www.comedycentral.tv/shows/1074-workaholics',
  91. 'only_matching': True,
  92. }, {
  93. 'url': 'http://www.comedycentral.tv/shows/1727-the-mindy-project/bonus',
  94. 'only_matching': True,
  95. }]
  96. def _real_extract(self, url):
  97. video_id = self._match_id(url)
  98. webpage = self._download_webpage(url, video_id)
  99. mrss_url = self._search_regex(
  100. r'data-mrss=(["\'])(?P<url>(?:(?!\1).)+)\1',
  101. webpage, 'mrss url', group='url')
  102. return self._get_videos_info_from_url(mrss_url, video_id)
  103. class ComedyCentralShortnameIE(InfoExtractor):
  104. _VALID_URL = r'^:(?P<id>tds|thedailyshow)$'
  105. _TESTS = [{
  106. 'url': ':tds',
  107. 'only_matching': True,
  108. }, {
  109. 'url': ':thedailyshow',
  110. 'only_matching': True,
  111. }]
  112. def _real_extract(self, url):
  113. video_id = self._match_id(url)
  114. shortcut_map = {
  115. 'tds': 'http://www.cc.com/shows/the-daily-show-with-trevor-noah/full-episodes',
  116. 'thedailyshow': 'http://www.cc.com/shows/the-daily-show-with-trevor-noah/full-episodes',
  117. }
  118. return self.url_result(shortcut_map[video_id])