about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-11-16 23:14:06 +0700
committerSergey M․ <dstftw@gmail.com>2016-11-16 23:15:19 +0700
commit073d5bf583e8ff8ae71efca5fc6fae0743ac8961 (patch)
treee4cc1f6797100b8f8e0722015365187441674260
parent315cb86a95d6e5c67fef27a88d96477786072b93 (diff)
downloadyoutube-dl-073d5bf583e8ff8ae71efca5fc6fae0743ac8961.tar.gz
youtube-dl-073d5bf583e8ff8ae71efca5fc6fae0743ac8961.tar.xz
youtube-dl-073d5bf583e8ff8ae71efca5fc6fae0743ac8961.zip
[youtube:live] Relax _VALID_URL (closes #11164)
-rw-r--r--youtube_dl/extractor/youtube.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 545246bcd..7ccb875a5 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -2175,7 +2175,7 @@ class YoutubeUserIE(YoutubeChannelIE):
 
 class YoutubeLiveIE(YoutubeBaseInfoExtractor):
     IE_DESC = 'YouTube.com live streams'
-    _VALID_URL = r'(?P<base_url>https?://(?:\w+\.)?youtube\.com/(?:user|channel|c)/(?P<id>[^/]+))/live'
+    _VALID_URL = r'(?P<base_url>https?://(?:\w+\.)?youtube\.com/(?:(?:user|channel|c)/)?(?P<id>[^/]+))/live'
     IE_NAME = 'youtube:live'
 
     _TESTS = [{
@@ -2204,6 +2204,9 @@ class YoutubeLiveIE(YoutubeBaseInfoExtractor):
     }, {
         'url': 'https://www.youtube.com/c/CommanderVideoHq/live',
         'only_matching': True,
+    }, {
+        'url': 'https://www.youtube.com/TheYoungTurks/live',
+        'only_matching': True,
     }]
 
     def _real_extract(self, url):