From f8fb3b8a7862ccf2a9347989013407b40d092cda Mon Sep 17 00:00:00 2001
From: xypwn <54681180+xypwn@users.noreply.github.com>
Date: Mon, 23 Nov 2020 16:49:39 +0100
Subject: [PATCH] [SouthparkDe] Support for English URLs

Allow downloading English South Park episodes from the southpark.de
---
 youtube_dlc/extractor/southpark.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 = [{