[ie/youtube] Fix tbr calculation (#9489)

Authored by: pukkandan

Co-authored-by: pukkandan <pukkandan.ytdlp@gmail.com>
pull/2475/head^2
sepro 2024-03-18 18:07:22 +01:00 zatwierdzone przez GitHub
rodzic 86d2f4d248
commit 22e4dfacb6
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: B5690EEEBB952194
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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