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.

123 lines
5.3 KiB

  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .mtv import MTVServicesInfoExtractor
  5. from ..utils import update_url_query
  6. class NickIE(MTVServicesInfoExtractor):
  7. # None of videos on the website are still alive?
  8. IE_NAME = 'nick.com'
  9. _VALID_URL = r'https?://(?:www\.)?nick(?:jr)?\.com/(?:videos/clip|[^/]+/videos)/(?P<id>[^/?#.]+)'
  10. _FEED_URL = 'http://udat.mtvnservices.com/service1/dispatch.htm'
  11. _TESTS = [{
  12. 'url': 'http://www.nick.com/videos/clip/alvinnn-and-the-chipmunks-112-full-episode.html',
  13. 'playlist': [
  14. {
  15. 'md5': '6e5adc1e28253bbb1b28ab05403dd4d4',
  16. 'info_dict': {
  17. 'id': 'be6a17b0-412d-11e5-8ff7-0026b9414f30',
  18. 'ext': 'mp4',
  19. 'title': 'ALVINNN!!! and The Chipmunks: "Mojo Missing/Who\'s The Animal" S1',
  20. 'description': 'Alvin is convinced his mojo was in a cap he gave to a fan, and must find a way to get his hat back before the Chipmunks’ big concert.\nDuring a costume visit to the zoo, Alvin finds himself mistaken for the real Tasmanian devil.',
  21. }
  22. },
  23. {
  24. 'md5': 'd7be441fc53a1d4882fa9508a1e5b3ce',
  25. 'info_dict': {
  26. 'id': 'be6b8f96-412d-11e5-8ff7-0026b9414f30',
  27. 'ext': 'mp4',
  28. 'title': 'ALVINNN!!! and The Chipmunks: "Mojo Missing/Who\'s The Animal" S2',
  29. 'description': 'Alvin is convinced his mojo was in a cap he gave to a fan, and must find a way to get his hat back before the Chipmunks’ big concert.\nDuring a costume visit to the zoo, Alvin finds himself mistaken for the real Tasmanian devil.',
  30. }
  31. },
  32. {
  33. 'md5': 'efffe1728a234b2b0d2f2b343dd1946f',
  34. 'info_dict': {
  35. 'id': 'be6cf7e6-412d-11e5-8ff7-0026b9414f30',
  36. 'ext': 'mp4',
  37. 'title': 'ALVINNN!!! and The Chipmunks: "Mojo Missing/Who\'s The Animal" S3',
  38. 'description': 'Alvin is convinced his mojo was in a cap he gave to a fan, and must find a way to get his hat back before the Chipmunks’ big concert.\nDuring a costume visit to the zoo, Alvin finds himself mistaken for the real Tasmanian devil.',
  39. }
  40. },
  41. {
  42. 'md5': '1ec6690733ab9f41709e274a1d5c7556',
  43. 'info_dict': {
  44. 'id': 'be6e3354-412d-11e5-8ff7-0026b9414f30',
  45. 'ext': 'mp4',
  46. 'title': 'ALVINNN!!! and The Chipmunks: "Mojo Missing/Who\'s The Animal" S4',
  47. 'description': 'Alvin is convinced his mojo was in a cap he gave to a fan, and must find a way to get his hat back before the Chipmunks’ big concert.\nDuring a costume visit to the zoo, Alvin finds himself mistaken for the real Tasmanian devil.',
  48. }
  49. },
  50. ],
  51. }, {
  52. 'url': 'http://www.nickjr.com/paw-patrol/videos/pups-save-a-goldrush-s3-ep302-full-episode/',
  53. 'only_matching': True,
  54. }]
  55. def _get_feed_query(self, uri):
  56. return {
  57. 'feed': 'nick_arc_player_prime',
  58. 'mgid': uri,
  59. }
  60. def _extract_mgid(self, webpage):
  61. return self._search_regex(r'data-contenturi="([^"]+)', webpage, 'mgid')
  62. class NickDeIE(MTVServicesInfoExtractor):
  63. IE_NAME = 'nick.de'
  64. _VALID_URL = r'https?://(?:www\.)?(?P<host>nick\.de|nickelodeon\.(?:nl|at))/(?:playlist|shows)/(?:[^/]+/)*(?P<id>[^/?#&]+)'
  65. _TESTS = [{
  66. 'url': 'http://www.nick.de/playlist/3773-top-videos/videos/episode/17306-zu-wasser-und-zu-land-rauchende-erdnusse',
  67. 'only_matching': True,
  68. }, {
  69. 'url': 'http://www.nick.de/shows/342-icarly',
  70. 'only_matching': True,
  71. }, {
  72. 'url': 'http://www.nickelodeon.nl/shows/474-spongebob/videos/17403-een-kijkje-in-de-keuken-met-sandy-van-binnenuit',
  73. 'only_matching': True,
  74. }, {
  75. 'url': 'http://www.nickelodeon.at/playlist/3773-top-videos/videos/episode/77993-das-letzte-gefecht',
  76. 'only_matching': True,
  77. }]
  78. def _extract_mrss_url(self, webpage, host):
  79. return update_url_query(self._search_regex(
  80. r'data-mrss=(["\'])(?P<url>http.+?)\1', webpage, 'mrss url', group='url'),
  81. {'siteKey': host})
  82. def _real_extract(self, url):
  83. mobj = re.match(self._VALID_URL, url)
  84. video_id = mobj.group('id')
  85. host = mobj.group('host')
  86. webpage = self._download_webpage(url, video_id)
  87. mrss_url = self._extract_mrss_url(webpage, host)
  88. return self._get_videos_info_from_url(mrss_url, video_id)
  89. class NickNightIE(NickDeIE):
  90. IE_NAME = 'nicknight'
  91. _VALID_URL = r'https?://(?:www\.)(?P<host>nicknight\.(?:de|at|tv))/(?:playlist|shows)/(?:[^/]+/)*(?P<id>[^/?#&]+)'
  92. _TESTS = [{
  93. 'url': 'http://www.nicknight.at/shows/977-awkward/videos/85987-nimmer-beste-freunde',
  94. 'only_matching': True,
  95. }, {
  96. 'url': 'http://www.nicknight.at/shows/977-awkward',
  97. 'only_matching': True,
  98. }, {
  99. 'url': 'http://www.nicknight.at/shows/1900-faking-it',
  100. 'only_matching': True,
  101. }]
  102. def _extract_mrss_url(self, webpage, *args):
  103. return self._search_regex(
  104. r'mrss\s*:\s*(["\'])(?P<url>http.+?)\1', webpage,
  105. 'mrss url', group='url')