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