Browse Source

[southparknl] Add extractor for southpark.nl

totalwebcasting
rrooij 9 years ago
parent
commit
e10dc0e1f0
2 changed files with 16 additions and 0 deletions
  1. +1
    -0
      youtube_dl/extractor/__init__.py
  2. +15
    -0
      youtube_dl/extractor/southpark.py

+ 1
- 0
youtube_dl/extractor/__init__.py View File

@ -485,6 +485,7 @@ from .southpark import (
SouthParkIE,
SouthParkEsIE,
SouthparkDeIE,
SouthParkNlIE
)
from .space import SpaceIE
from .spankbang import SpankBangIE


+ 15
- 0
youtube_dl/extractor/southpark.py View File

@ -46,3 +46,18 @@ class SouthparkDeIE(SouthParkIE):
'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',
'info_dict': {
'id': 'c56b9a1f-0e42-4942-89e0-8e721d814c5c',
'ext': 'mp4',
'title': 'South Park 1806: Freemium Isn\'t Free - Act 3',
},
}]

Loading…
Cancel
Save