mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-03 20:37:08 -05:00 
			
		
		
		
	[youtube:live] Relax _VALID_URL (closes #11164)
This commit is contained in:
		@@ -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):
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user