]> Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/southparkstudios.py
fd90cc5dd18f966242d658df1e133456271c8ee3
[youtubedl] / youtube_dl / extractor / southparkstudios.py
1 import re
2
3 from .mtv import MTVServicesInfoExtractor
4
5
6 class SouthParkStudiosIE(MTVServicesInfoExtractor):
7 IE_NAME = u'southparkstudios.com'
8 _VALID_URL = r'(https?://)?(www\.)?(?P<url>southparkstudios\.com/(clips|full-episodes)/(?P<id>.+?)(\?|#|$))'
9
10 _FEED_URL = 'http://www.southparkstudios.com/feeds/video-player/mrss'
11
12 _TESTS = [{
13 u'url': u'http://www.southparkstudios.com/clips/104437/bat-daded#tab=featured',
14 u'file': u'a7bff6c2-ed00-11e0-aca6-0026b9414f30.mp4',
15 u'info_dict': {
16 u'title': u'Bat Daded',
17 u'description': u'Randy disqualifies South Park by getting into a fight with Bat Dad.',
18 },
19 }]
20
21 def _real_extract(self, url):
22 mobj = re.match(self._VALID_URL, url)
23 url = u'http://www.' + mobj.group(u'url')
24 video_id = mobj.group('id')
25 webpage = self._download_webpage(url, video_id)
26 mgid = self._search_regex(r'swfobject.embedSWF\(".*?(mgid:.*?)"',
27 webpage, u'mgid')
28 return self._get_videos_info(mgid)
29
30 class SouthparkDeIE(SouthParkStudiosIE):
31 IE_NAME = u'southpark.de'
32 _VALID_URL = r'(https?://)?(www\.)?(?P<url>southpark\.de/(clips|alle-episoden)/(?P<id>.+?)(\?|#|$))'
33 _FEED_URL = 'http://www.southpark.de/feeds/video-player/mrss/'
34
35 _TESTS = [{
36 u'url': u'http://www.southpark.de/clips/uygssh/the-government-wont-respect-my-privacy#tab=featured',
37 u'file': u'85487c96-b3b9-4e39-9127-ad88583d9bf2.mp4',
38 u'info_dict': {
39 u'title': u'The Government Won\'t Respect My Privacy',
40 u'description': u'Cartman explains the benefits of "Shitter" to Stan, Kyle and Craig.',
41 },
42 }]