diff options
author | sepro <4618135+seproDev@users.noreply.github.com> | 2024-04-01 01:17:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-01 04:47:24 +0530 |
commit | 86e3b82261e8ebc6c6707c09544c9dfb8907c0fd (patch) | |
tree | e968d096859d9b8d6bf043fadf37401a84dfdee1 /yt_dlp/extractor/common.py | |
parent | e7b17fce14775bd2448695c8eb7379b8d31d3537 (diff) |
[core] Fix `filesize_approx` calculation (#9560)
Reverts 22e4dfacb61f62dfbb3eb41b31c7b69ba1059b80
Despite being documented as `Kbit/s`, the extractors/manifests were returning bitrates in SI units of kilobits/sec.
Authored by: seproDev, pukkandan
Diffstat (limited to 'yt_dlp/extractor/common.py')
-rw-r--r-- | yt_dlp/extractor/common.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index bd318a7f4..57bbf9bdf 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -171,12 +171,12 @@ class InfoExtractor: Automatically calculated from width and height * dynamic_range The dynamic range of the video. One of: "SDR" (None), "HDR10", "HDR10+, "HDR12", "HLG, "DV" - * tbr Average bitrate of audio and video in KBit/s - * abr Average audio bitrate in KBit/s + * tbr Average bitrate of audio and video in kbps (1000 bits/sec) + * abr Average audio bitrate in kbps (1000 bits/sec) * acodec Name of the audio codec in use * asr Audio sampling rate in Hertz * audio_channels Number of audio channels - * vbr Average video bitrate in KBit/s + * vbr Average video bitrate in kbps (1000 bits/sec) * fps Frame rate * vcodec Name of the video codec in use * container Name of the container format |