Kaynağa Gözat

[Common:JWPlayer] Fix x1000 scaling error

See https://github.com/yt-dlp/yt-dlp/issues/5106#issuecomment-1264625161
dirkf 2 yıl önce
ebeveyn
işleme
11b284c81f
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      youtube_dl/extractor/common.py

+ 1 - 1
youtube_dl/extractor/common.py

@@ -2844,7 +2844,7 @@ class InfoExtractor(object):
                     'url': source_url,
                     'url': source_url,
                     'width': int_or_none(source.get('width')),
                     'width': int_or_none(source.get('width')),
                     'height': height,
                     'height': height,
-                    'tbr': int_or_none(source.get('bitrate')),
+                    'tbr': int_or_none(source.get('bitrate'), scale=1000),
                     'ext': ext,
                     'ext': ext,
                 }
                 }
                 if source_url.startswith('rtmp'):
                 if source_url.startswith('rtmp'):