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.

93 lines
4.3 KiB

  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. from .mtv import MTVServicesInfoExtractor
  4. from ..utils import update_url_query
  5. class NickIE(MTVServicesInfoExtractor):
  6. # None of videos on the website are still alive?
  7. IE_NAME = 'nick.com'
  8. _VALID_URL = r'https?://(?:www\.)?nick(?:jr)?\.com/(?:videos/clip|[^/]+/videos)/(?P<id>[^/?#.]+)'
  9. _FEED_URL = 'http://udat.mtvnservices.com/service1/dispatch.htm'
  10. _TESTS = [{
  11. 'url': 'http://www.nick.com/videos/clip/alvinnn-and-the-chipmunks-112-full-episode.html',
  12. 'playlist': [
  13. {
  14. 'md5': '6e5adc1e28253bbb1b28ab05403dd4d4',
  15. 'info_dict': {
  16. 'id': 'be6a17b0-412d-11e5-8ff7-0026b9414f30',
  17. 'ext': 'mp4',
  18. 'title': 'ALVINNN!!! and The Chipmunks: "Mojo Missing/Who\'s The Animal" S1',
  19. '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.',
  20. }
  21. },
  22. {
  23. 'md5': 'd7be441fc53a1d4882fa9508a1e5b3ce',
  24. 'info_dict': {
  25. 'id': 'be6b8f96-412d-11e5-8ff7-0026b9414f30',
  26. 'ext': 'mp4',
  27. 'title': 'ALVINNN!!! and The Chipmunks: "Mojo Missing/Who\'s The Animal" S2',
  28. '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.',
  29. }
  30. },
  31. {
  32. 'md5': 'efffe1728a234b2b0d2f2b343dd1946f',
  33. 'info_dict': {
  34. 'id': 'be6cf7e6-412d-11e5-8ff7-0026b9414f30',
  35. 'ext': 'mp4',
  36. 'title': 'ALVINNN!!! and The Chipmunks: "Mojo Missing/Who\'s The Animal" S3',
  37. '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.',
  38. }
  39. },
  40. {
  41. 'md5': '1ec6690733ab9f41709e274a1d5c7556',
  42. 'info_dict': {
  43. 'id': 'be6e3354-412d-11e5-8ff7-0026b9414f30',
  44. 'ext': 'mp4',
  45. 'title': 'ALVINNN!!! and The Chipmunks: "Mojo Missing/Who\'s The Animal" S4',
  46. '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.',
  47. }
  48. },
  49. ],
  50. }, {
  51. 'url': 'http://www.nickjr.com/paw-patrol/videos/pups-save-a-goldrush-s3-ep302-full-episode/',
  52. 'only_matching': True,
  53. }]
  54. def _get_feed_query(self, uri):
  55. return {
  56. 'feed': 'nick_arc_player_prime',
  57. 'mgid': uri,
  58. }
  59. def _extract_mgid(self, webpage):
  60. return self._search_regex(r'data-contenturi="([^"]+)', webpage, 'mgid')
  61. class NickDeIE(MTVServicesInfoExtractor):
  62. IE_NAME = 'nick.de'
  63. _VALID_URL = r'https?://(?:www\.)?(?:nick\.de|nickelodeon\.nl)/(?:playlist|shows)/(?:[^/]+/)*(?P<id>[^/?#&]+)'
  64. _TESTS = [{
  65. 'url': 'http://www.nick.de/playlist/3773-top-videos/videos/episode/17306-zu-wasser-und-zu-land-rauchende-erdnusse',
  66. 'only_matching': True,
  67. }, {
  68. 'url': 'http://www.nick.de/shows/342-icarly',
  69. 'only_matching': True,
  70. }, {
  71. 'url': 'http://www.nickelodeon.nl/shows/474-spongebob/videos/17403-een-kijkje-in-de-keuken-met-sandy-van-binnenuit',
  72. 'only_matching': True,
  73. }]
  74. def _real_extract(self, url):
  75. video_id = self._match_id(url)
  76. webpage = self._download_webpage(url, video_id)
  77. mrss_url = update_url_query(self._search_regex(
  78. r'data-mrss=(["\'])(?P<url>http.+?)\1', webpage, 'mrss url', group='url'),
  79. {'siteKey': 'nick.de'})
  80. return self._get_videos_info_from_url(mrss_url, video_id)