commit
22e462c97a
2 changed files with 14 additions and 2 deletions
|
@ -484,7 +484,8 @@ from .soundgasm import (
|
||||||
from .southpark import (
|
from .southpark import (
|
||||||
SouthParkIE,
|
SouthParkIE,
|
||||||
SouthParkEsIE,
|
SouthParkEsIE,
|
||||||
SouthparkDeIE,
|
SouthParkDeIE,
|
||||||
|
SouthParkNlIE
|
||||||
)
|
)
|
||||||
from .space import SpaceIE
|
from .space import SpaceIE
|
||||||
from .spankbang import SpankBangIE
|
from .spankbang import SpankBangIE
|
||||||
|
|
|
@ -32,7 +32,7 @@ class SouthParkEsIE(SouthParkIE):
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
|
||||||
class SouthparkDeIE(SouthParkIE):
|
class SouthParkDeIE(SouthParkIE):
|
||||||
IE_NAME = 'southpark.de'
|
IE_NAME = 'southpark.de'
|
||||||
_VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.de/(?:clips|alle-episoden)/(?P<id>.+?)(\?|#|$))'
|
_VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.de/(?:clips|alle-episoden)/(?P<id>.+?)(\?|#|$))'
|
||||||
_FEED_URL = 'http://www.southpark.de/feeds/video-player/mrss/'
|
_FEED_URL = 'http://www.southpark.de/feeds/video-player/mrss/'
|
||||||
|
@ -46,3 +46,14 @@ class SouthparkDeIE(SouthParkIE):
|
||||||
'description': 'Cartman explains the benefits of "Shitter" to Stan, Kyle and Craig.',
|
'description': 'Cartman explains the benefits of "Shitter" to Stan, Kyle and Craig.',
|
||||||
},
|
},
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
|
||||||
|
class SouthParkNlIE(SouthParkIE):
|
||||||
|
IE_NAME = 'southpark.nl'
|
||||||
|
_VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.nl/(?:clips|full-episodes)/(?P<id>.+?)(\?|#|$))'
|
||||||
|
_FEED_URL = 'http://www.southpark.nl/feeds/video-player/mrss/'
|
||||||
|
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'http://www.southpark.nl/full-episodes/s18e06-freemium-isnt-free',
|
||||||
|
'playlist_count': 4,
|
||||||
|
}]
|
||||||
|
|
Loading…
Reference in a new issue