]> Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/southpark.py
7fb165a872766f4c1917d2929ec8a73b8f74434e
[youtubedl] / youtube_dl / extractor / southpark.py
1 # encoding: utf-8
2 from __future__ import unicode_literals
3
4 from .mtv import MTVServicesInfoExtractor
5
6
7 class SouthParkIE(MTVServicesInfoExtractor):
8 IE_NAME = 'southpark.cc.com'
9 _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.cc\.com/(?:clips|full-episodes)/(?P<id>.+?)(\?|#|$))'
10
11 _FEED_URL = 'http://www.southparkstudios.com/feeds/video-player/mrss'
12
13 _TESTS = [{
14 'url': 'http://southpark.cc.com/clips/104437/bat-daded#tab=featured',
15 'info_dict': {
16 'id': 'a7bff6c2-ed00-11e0-aca6-0026b9414f30',
17 'ext': 'mp4',
18 'title': 'South Park|Bat Daded',
19 'description': 'Randy disqualifies South Park by getting into a fight with Bat Dad.',
20 },
21 }]
22
23
24 class SouthParkEsIE(SouthParkIE):
25 IE_NAME = 'southpark.cc.com:español'
26 _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.cc\.com/episodios-en-espanol/(?P<id>.+?)(\?|#|$))'
27 _LANG = 'es'
28
29 _TESTS = [{
30 'url': 'http://southpark.cc.com/episodios-en-espanol/s01e01-cartman-consigue-una-sonda-anal#source=351c1323-0b96-402d-a8b9-40d01b2e9bde&position=1&sort=!airdate',
31 'playlist_count': 4,
32 }]
33
34
35 class SouthParkDeIE(SouthParkIE):
36 IE_NAME = 'southpark.de'
37 _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.de/(?:clips|alle-episoden)/(?P<id>.+?)(\?|#|$))'
38 _FEED_URL = 'http://www.southpark.de/feeds/video-player/mrss/'
39
40 _TESTS = [{
41 'url': 'http://www.southpark.de/clips/uygssh/the-government-wont-respect-my-privacy#tab=featured',
42 'info_dict': {
43 'id': '85487c96-b3b9-4e39-9127-ad88583d9bf2',
44 'ext': 'mp4',
45 'title': 'The Government Won\'t Respect My Privacy',
46 'description': 'Cartman explains the benefits of "Shitter" to Stan, Kyle and Craig.',
47 },
48 }]
49
50
51 class SouthParkNlIE(SouthParkIE):
52 IE_NAME = 'southpark.nl'
53 _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.nl/(?:clips|full-episodes)/(?P<id>.+?)(\?|#|$))'
54 _FEED_URL = 'http://www.southpark.nl/feeds/video-player/mrss/'
55
56 _TESTS = [{
57 'url': 'http://www.southpark.nl/full-episodes/s18e06-freemium-isnt-free',
58 'playlist_count': 4,
59 }]
60
61
62 class SouthParkDkIE(SouthParkIE):
63 IE_NAME = 'southparkstudios.dk'
64 _VALID_URL = r'https?://(?:www\.)?(?P<url>southparkstudios\.dk/(?:clips|full-episodes)/(?P<id>.+?)(\?|#|$))'
65 _FEED_URL = 'http://www.southparkstudios.dk/feeds/video-player/mrss/'
66
67 _TESTS = [{
68 'url': 'http://www.southparkstudios.dk/full-episodes/s18e07-grounded-vindaloop',
69 'playlist_count': 4,
70 }]