diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-07-26 03:22:39 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2021-07-26 03:38:15 +0530 |
commit | ea05b3020d11ae102d3b66853235ea7eacce465b (patch) | |
tree | b8da7c6c8c06ba6b1f36aa138279efeb2e59398b /yt_dlp/YoutubeDL.py | |
parent | 9536bc072d3c62777129bf3f3ea526775bbfed0a (diff) | |
download | hypervideo-pre-ea05b3020d11ae102d3b66853235ea7eacce465b.tar.lz hypervideo-pre-ea05b3020d11ae102d3b66853235ea7eacce465b.tar.xz hypervideo-pre-ea05b3020d11ae102d3b66853235ea7eacce465b.zip |
Remove `asr` appearing twice in `-F`
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 0cba95bb6..c0bde4339 100644 --- a/yt_dlp/YoutubeDL.py +++ b/yt_dlp/YoutubeDL.py @@ -3069,7 +3069,7 @@ class YoutubeDL(object): 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', 'MORE INFO'] |