mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 03:37:08 -05:00 
			
		
		
		
	[screenwavemedia] Check formats' URLs
This commit is contained in:
		@@ -76,9 +76,11 @@ class ScreenwaveMediaIE(InfoExtractor):
 | 
			
		||||
            if source.get('type') == 'hls':
 | 
			
		||||
                formats.extend(self._extract_m3u8_formats(file_, video_id, ext='mp4'))
 | 
			
		||||
            else:
 | 
			
		||||
                format_label = source.get('label')
 | 
			
		||||
                format_id = self._search_regex(
 | 
			
		||||
                    r'_(.+?)\.[^.]+$', file_, 'format id', default=None)
 | 
			
		||||
                if not self._is_valid_url(file_, video_id, format_id or 'video'):
 | 
			
		||||
                    continue
 | 
			
		||||
                format_label = source.get('label')
 | 
			
		||||
                height = int_or_none(self._search_regex(
 | 
			
		||||
                    r'^(\d+)[pP]', format_label, 'height', default=None))
 | 
			
		||||
                formats.append({
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user