]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/southparkstudios.py
3 from .mtv
import MTVServicesInfoExtractor
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>.+?)(\?|#|$))'
10 _FEED_URL
= 'http://www.southparkstudios.com/feeds/video-player/mrss'
13 u
'url': u
'http://www.southparkstudios.com/clips/104437/bat-daded#tab=featured',
14 u
'file': u
'a7bff6c2-ed00-11e0-aca6-0026b9414f30.mp4',
16 u
'title': u
'Bat Daded',
17 u
'description': u
'Randy disqualifies South Park by getting into a fight with Bat Dad.',
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:.*?)"',
28 return self
._get
_videos
_info
(mgid
)
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/'
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',
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.',