diff options
author | Tom-Oliver Heidel <github@tom-oliver.eu> | 2020-11-24 01:57:48 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-24 01:57:48 +0100 |
commit | 17fbbff940920c5751c6c11c03dd08423e602361 (patch) | |
tree | 5013b2a1fa3d6186dccb3bb0e6d594d27f3ca3f7 | |
parent | 228385340e9a976f52735078218a9b8ecfe7ae7a (diff) | |
parent | f8fb3b8a7862ccf2a9347989013407b40d092cda (diff) | |
download | hypervideo-pre-17fbbff940920c5751c6c11c03dd08423e602361.tar.lz hypervideo-pre-17fbbff940920c5751c6c11c03dd08423e602361.tar.xz hypervideo-pre-17fbbff940920c5751c6c11c03dd08423e602361.zip |
Merge pull request #254 from xypwn/patch-1
[SouthparkDe] Support for English URLs
-rw-r--r-- | youtube_dlc/extractor/southpark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/extractor/southpark.py b/youtube_dlc/extractor/southpark.py index 20ae7c5e7..95e6d2890 100644 --- a/youtube_dlc/extractor/southpark.py +++ b/youtube_dlc/extractor/southpark.py @@ -44,7 +44,7 @@ class SouthParkEsIE(SouthParkIE): class SouthParkDeIE(SouthParkIE): IE_NAME = 'southpark.de' - _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.de/(?:videoclip|collections|folgen)/(?P<id>(?P<unique_id>.+?)/.+?)(?:\?|#|$))' + _VALID_URL = r'https?://(?:www\.)?(?P<url>southpark\.de/(?:(en/(videoclip|collections|episodes))|(videoclip|collections|folgen))/(?P<id>(?P<unique_id>.+?)/.+?)(?:\?|#|$))' # _FEED_URL = 'http://feeds.mtvnservices.com/od/feed/intl-mrss-player-feed' _TESTS = [{ |