2014-02-02 12:03:36 +01:00
|
|
|
from __future__ import unicode_literals
|
2013-09-15 23:30:58 +02:00
|
|
|
|
2013-12-03 14:58:24 +01:00
|
|
|
from .mtv import MTVServicesInfoExtractor
|
2013-09-15 23:30:58 +02:00
|
|
|
|
|
|
|
|
2013-12-03 14:58:24 +01:00
|
|
|
class SouthParkStudiosIE(MTVServicesInfoExtractor):
|
2014-02-02 12:03:36 +01:00
|
|
|
IE_NAME = 'southparkstudios.com'
|
|
|
|
_VALID_URL = r'https?://(www\.)?(?P<url>southparkstudios\.com/(clips|full-episodes)/(?P<id>.+?)(\?|#|$))'
|
2013-09-15 23:30:58 +02:00
|
|
|
|
|
|
|
_FEED_URL = 'http://www.southparkstudios.com/feeds/video-player/mrss'
|
|
|
|
|
2013-11-17 17:43:58 +01:00
|
|
|
_TESTS = [{
|
2014-02-02 12:03:36 +01:00
|
|
|
'url': 'http://www.southparkstudios.com/clips/104437/bat-daded#tab=featured',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'a7bff6c2-ed00-11e0-aca6-0026b9414f30',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Bat Daded',
|
|
|
|
'description': 'Randy disqualifies South Park by getting into a fight with Bat Dad.',
|
2013-09-15 23:30:58 +02:00
|
|
|
},
|
2013-11-17 17:43:58 +01:00
|
|
|
}]
|
2013-09-15 23:30:58 +02:00
|
|
|
|
2013-11-17 17:54:47 +01:00
|
|
|
|
|
|
|
class SouthparkDeIE(SouthParkStudiosIE):
|
2014-02-02 12:03:36 +01:00
|
|
|
IE_NAME = 'southpark.de'
|
|
|
|
_VALID_URL = r'https?://(www\.)?(?P<url>southpark\.de/(clips|alle-episoden)/(?P<id>.+?)(\?|#|$))'
|
2013-11-17 17:54:47 +01:00
|
|
|
_FEED_URL = 'http://www.southpark.de/feeds/video-player/mrss/'
|
|
|
|
|
|
|
|
_TESTS = [{
|
2014-02-02 12:03:36 +01:00
|
|
|
'url': 'http://www.southpark.de/clips/uygssh/the-government-wont-respect-my-privacy#tab=featured',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '85487c96-b3b9-4e39-9127-ad88583d9bf2',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'The Government Won\'t Respect My Privacy',
|
|
|
|
'description': 'Cartman explains the benefits of "Shitter" to Stan, Kyle and Craig.',
|
2013-11-17 17:54:47 +01:00
|
|
|
},
|
|
|
|
}]
|