mirror of
				https://github.com/ytdl-org/youtube-dl
				synced 2025-11-04 03:33:46 +00:00 
			
		
		
		
	[imdb] Fix extension extraction (closes #17167)
This commit is contained in:
		
							parent
							
								
									d588d4a5a6
								
							
						
					
					
						commit
						a62460aa21
					
				@ -64,7 +64,8 @@ class ImdbIE(InfoExtractor):
 | 
				
			|||||||
            video_url = url_or_none(encoding.get('videoUrl'))
 | 
					            video_url = url_or_none(encoding.get('videoUrl'))
 | 
				
			||||||
            if not video_url:
 | 
					            if not video_url:
 | 
				
			||||||
                continue
 | 
					                continue
 | 
				
			||||||
            ext = determine_ext(video_url, mimetype2ext(encoding.get('mimeType')))
 | 
					            ext = mimetype2ext(encoding.get(
 | 
				
			||||||
 | 
					                'mimeType')) or determine_ext(video_url)
 | 
				
			||||||
            if ext == 'm3u8':
 | 
					            if ext == 'm3u8':
 | 
				
			||||||
                formats.extend(self._extract_m3u8_formats(
 | 
					                formats.extend(self._extract_m3u8_formats(
 | 
				
			||||||
                    video_url, video_id, 'mp4', entry_protocol='m3u8_native',
 | 
					                    video_url, video_id, 'mp4', entry_protocol='m3u8_native',
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user