Browse Source

[twitch:stream] Improve _VALID_URL (closes #11971)

Sergey M․ 8 years ago
parent
commit
9db8f6c540
1 changed files with 25 additions and 1 deletions
  1. 25 1
      youtube_dl/extractor/twitch.py

+ 25 - 1
youtube_dl/extractor/twitch.py

@@ -447,7 +447,14 @@ class TwitchHighlightsIE(TwitchVideosBaseIE):
 
 
 class TwitchStreamIE(TwitchBaseIE):
 class TwitchStreamIE(TwitchBaseIE):
     IE_NAME = 'twitch:stream'
     IE_NAME = 'twitch:stream'
-    _VALID_URL = r'%s/(?P<id>[^/#?]+)/?(?:\#.*)?$' % TwitchBaseIE._VALID_URL_BASE
+    _VALID_URL = r'''(?x)
+                    https?://
+                        (?:
+                            (?:www\.)?twitch\.tv/|
+                            player\.twitch\.tv/\?.*?\bchannel=
+                        )
+                        (?P<id>[^/#?]+)
+                    '''
 
 
     _TESTS = [{
     _TESTS = [{
         'url': 'http://www.twitch.tv/shroomztv',
         'url': 'http://www.twitch.tv/shroomztv',
@@ -471,8 +478,25 @@ class TwitchStreamIE(TwitchBaseIE):
     }, {
     }, {
         'url': 'http://www.twitch.tv/miracle_doto#profile-0',
         'url': 'http://www.twitch.tv/miracle_doto#profile-0',
         'only_matching': True,
         'only_matching': True,
+    }, {
+        'url': 'https://player.twitch.tv/?channel=lotsofs',
+        'only_matching': True,
     }]
     }]
 
 
+    @classmethod
+    def suitable(cls, url):
+        return (False
+                if any(ie.suitable(url) for ie in (
+                    TwitchVideoIE,
+                    TwitchChapterIE,
+                    TwitchVodIE,
+                    TwitchProfileIE,
+                    TwitchAllVideosIE,
+                    TwitchUploadsIE,
+                    TwitchPastBroadcastsIE,
+                    TwitchHighlightsIE))
+                else super(TwitchStreamIE, cls).suitable(url))
+
     def _real_extract(self, url):
     def _real_extract(self, url):
         channel_id = self._match_id(url)
         channel_id = self._match_id(url)