diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-07-20 05:29:42 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-07-20 05:30:28 +0530 |
commit | 3f698246b23081ad347b7625442f52a1b384b5f8 (patch) | |
tree | d26f7f0379e92d0e4d48ab767a38ec6853dfbe46 | |
parent | cca80fe6110653582e8c8a8d06490b4028ffd755 (diff) | |
download | hypervideo-pre-3f698246b23081ad347b7625442f52a1b384b5f8.tar.lz hypervideo-pre-3f698246b23081ad347b7625442f52a1b384b5f8.tar.xz hypervideo-pre-3f698246b23081ad347b7625442f52a1b384b5f8.zip |
Rename `NOTE` in `-F` to `MORE INFO`
since it's often confused to be the same as `format_note`
-rw-r--r-- | yt_dlp/YoutubeDL.py | 23 |
1 files changed, 8 insertions, 15 deletions
diff --git a/yt_dlp/YoutubeDL.py b/yt_dlp/YoutubeDL.py index 3ed104e0f..acb508b98 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -3007,17 +3007,6 @@ class YoutubeDL(object): res += '~' + format_bytes(fdict['filesize_approx']) return res - def _format_note_table(self, f): - def join_fields(*vargs): - return ', '.join((val for val in vargs if val != '')) - - return join_fields( - 'UNSUPPORTED' if f.get('ext') in ('f4f', 'f4m') else '', - format_field(f, 'language', '[%s]'), - format_field(f, 'format_note'), - format_field(f, 'container', ignore=(None, f.get('ext'))), - format_field(f, 'asr', '%5dHz')) - def list_formats(self, info_dict): formats = info_dict.get('formats', [info_dict]) new_format = ( @@ -3040,11 +3029,15 @@ class YoutubeDL(object): format_field(f, 'acodec', default='unknown').replace('none', ''), format_field(f, 'abr', '%3dk'), format_field(f, 'asr', '%5dHz'), - self._format_note_table(f)] - for f in formats - if f.get('preference') is None or f['preference'] >= -1000] + ', '.join(filter(None, ( + 'UNSUPPORTED' if f.get('ext') in ('f4f', 'f4m') else '', + format_field(f, 'language', '[%s]'), + format_field(f, 'format_note'), + format_field(f, 'container', ignore=(None, f.get('ext'))), + format_field(f, 'asr', '%5dHz')))), + ] for f in formats if f.get('preference') is None or f['preference'] >= -1000] header_line = ['ID', 'EXT', 'RESOLUTION', 'FPS', '|', ' FILESIZE', ' TBR', 'PROTO', - '|', 'VCODEC', ' VBR', 'ACODEC', ' ABR', ' ASR', 'NOTE'] + '|', 'VCODEC', ' VBR', 'ACODEC', ' ABR', ' ASR', 'MORE INFO'] else: table = [ [ |