[southpark:espanol] Add extractor (Closes #5525)
This commit is contained in:
parent
a542e372ab
commit
e4a5e772f2
2 changed files with 12 additions and 0 deletions
|
@ -478,6 +478,7 @@ from .soundgasm import (
|
||||||
)
|
)
|
||||||
from .southpark import (
|
from .southpark import (
|
||||||
SouthParkIE,
|
SouthParkIE,
|
||||||
|
SouthParkEsIE,
|
||||||
SouthparkDeIE,
|
SouthparkDeIE,
|
||||||
)
|
)
|
||||||
from .space import SpaceIE
|
from .space import SpaceIE
|
||||||
|
|
|
@ -20,6 +20,17 @@ class SouthParkIE(MTVServicesInfoExtractor):
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
|
||||||
|
class SouthParkEsIE(SouthParkIE):
|
||||||
|
IE_NAME = 'southpark.cc.com:espanol'
|
||||||
|
_VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.cc\.com/episodios-en-espanol/(?P<id>.+?)(\?|#|$))'
|
||||||
|
_LANG = 'es'
|
||||||
|
|
||||||
|
_TESTS = [{
|
||||||
|
'url': 'http://southpark.cc.com/episodios-en-espanol/s01e01-cartman-consigue-una-sonda-anal#source=351c1323-0b96-402d-a8b9-40d01b2e9bde&position=1&sort=!airdate',
|
||||||
|
'playlist_count': 4,
|
||||||
|
}]
|
||||||
|
|
||||||
|
|
||||||
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>.+?)(\?|#|$))'
|
||||||
|
|
Loading…
Reference in a new issue