mirror of
				https://github.com/yt-dlp/yt-dlp.git
				synced 2025-10-31 14:45:14 +00:00 
			
		
		
		
	[ie/youtube] Fix tbr calculation (#9489)
Authored by: pukkandan Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com>
This commit is contained in:
		| @@ -3834,7 +3834,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor): | ||||
|                             video_id=video_id, only_once=True) | ||||
|                     throttled = True | ||||
| 
 | ||||
|             tbr = float_or_none(fmt.get('averageBitrate') or fmt.get('bitrate'), 1000) | ||||
|             tbr = float_or_none(fmt.get('averageBitrate') or fmt.get('bitrate'), 1024) | ||||
|             language_preference = ( | ||||
|                 10 if audio_track.get('audioIsDefault') and 10 | ||||
|                 else -10 if 'descriptive' in (audio_track.get('displayName') or '').lower() and -10 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 sepro
					sepro