mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-11-04 08:35:12 +00:00 
			
		
		
		
	[vimeo] extract m3u8 manifest and bitrate
This commit is contained in:
		@@ -397,8 +397,12 @@ class VimeoIE(VimeoBaseInfoExtractor):
 | 
				
			|||||||
                    'format_id': format_id,
 | 
					                    'format_id': format_id,
 | 
				
			||||||
                    'width': file_info.get('width'),
 | 
					                    'width': file_info.get('width'),
 | 
				
			||||||
                    'height': file_info.get('height'),
 | 
					                    'height': file_info.get('height'),
 | 
				
			||||||
 | 
					                    'tbr': file_info.get('bitrate'),
 | 
				
			||||||
                })
 | 
					                })
 | 
				
			||||||
        formats = []
 | 
					        formats = []
 | 
				
			||||||
 | 
					        hls = config_files.get("hls")
 | 
				
			||||||
 | 
					        if hls:
 | 
				
			||||||
 | 
					            formats = self._extract_m3u8_formats(hls['all'], video_id, m3u8_id='hls')
 | 
				
			||||||
        for key in ('other', 'sd', 'hd'):
 | 
					        for key in ('other', 'sd', 'hd'):
 | 
				
			||||||
            formats += files[key]
 | 
					            formats += files[key]
 | 
				
			||||||
        if len(formats) == 0:
 | 
					        if len(formats) == 0:
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user