diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-28 10:40:54 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-06-29 06:43:27 +0530 |
commit | ae61d108dd83a951b6e8a27e1fb969682416150d (patch) | |
tree | 71cdc169890133e0097f2d28f452329315633e4b /yt_dlp/YoutubeDL.py | |
parent | 47046464faaa3c72465f52c3c6a6191fbfd6b32c (diff) | |
download | hypervideo-pre-ae61d108dd83a951b6e8a27e1fb969682416150d.tar.lz hypervideo-pre-ae61d108dd83a951b6e8a27e1fb969682416150d.tar.xz hypervideo-pre-ae61d108dd83a951b6e8a27e1fb969682416150d.zip |
[cleanup] Misc cleanup
Diffstat (limited to 'yt_dlp/YoutubeDL.py')
-rw-r--r-- | yt_dlp/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 9ebb0b82a..0711f38c7 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -3531,7 +3531,7 @@ class YoutubeDL: 'none', '' if f.get('vcodec') == 'none' else self._format_out('video only', self.Styles.SUPPRESS)), format_field(f, 'abr', '\t%dk'), - format_field(f, 'asr', '\t%dHz'), + format_field(f, 'asr', '\t%s', func=format_decimal_suffix), join_nonempty( self._format_out('UNSUPPORTED', 'light red') if f.get('ext') in ('f4f', 'f4m') else None, format_field(f, 'language', '[%s]'), |