summary refs log tree commit diff
diff options
context:
space:
mode:
authorFelix Stupp <felix.stupp@outlook.com>2020-04-07 16:21:25 +0000
committerGitHub <noreply@github.com>2020-04-07 23:21:25 +0700
commitc9595ee78027ecf6bedbdc33c690228fa7d3a5bb (patch)
treec280aed713c6449b582d3a6975ddb44d5b3f9802
parent91bd3bd0194119fccc91b7eafb7afdcda646ad57 (diff)
downloadyoutube-dl-c9595ee78027ecf6bedbdc33c690228fa7d3a5bb.tar.gz
youtube-dl-c9595ee78027ecf6bedbdc33c690228fa7d3a5bb.tar.xz
youtube-dl-c9595ee78027ecf6bedbdc33c690228fa7d3a5bb.zip
[twitch:clips] Extend _VALID_URL (closes #24290) (#24642)
-rw-r--r--youtube_dl/extractor/twitch.py15
1 files changed, 14 insertions, 1 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py
index 0db2dca41..78ee0115c 100644
--- a/youtube_dl/extractor/twitch.py
+++ b/youtube_dl/extractor/twitch.py
@@ -643,7 +643,14 @@ class TwitchStreamIE(TwitchBaseIE):
 
 class TwitchClipsIE(TwitchBaseIE):
     IE_NAME = 'twitch:clips'
-    _VALID_URL = r'https?://(?:clips\.twitch\.tv/(?:embed\?.*?\bclip=|(?:[^/]+/)*)|(?:www\.)?twitch\.tv/[^/]+/clip/)(?P<id>[^/?#&]+)'
+    _VALID_URL = r'''(?x)
+                    https?://
+                        (?:
+                            clips\.twitch\.tv/(?:embed\?.*?\bclip=|(?:[^/]+/)*)|
+                            (?:(?:www|go|m)\.)?twitch\.tv/[^/]+/clip/
+                        )
+                        (?P<id>[^/?#&]+)
+                    '''
 
     _TESTS = [{
         'url': 'https://clips.twitch.tv/FaintLightGullWholeWheat',
@@ -669,6 +676,12 @@ class TwitchClipsIE(TwitchBaseIE):
     }, {
         'url': 'https://clips.twitch.tv/embed?clip=InquisitiveBreakableYogurtJebaited',
         'only_matching': True,
+    }, {
+        'url': 'https://m.twitch.tv/rossbroadcast/clip/ConfidentBraveHumanChefFrank',
+        'only_matching': True,
+    }, {
+        'url': 'https://go.twitch.tv/rossbroadcast/clip/ConfidentBraveHumanChefFrank',
+        'only_matching': True,
     }]
 
     def _real_extract(self, url):