mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-03 10:14:42 +01:00
Fixes for --list
options (See desc)
1. Fix `--list-formats-old` 2. Allow listing with `--quiet` 3. Allow various listings to work together 4. Allow `--print` to work with listing
This commit is contained in:
parent
17f0eb66b8
commit
169dbde946
@ -2002,10 +2002,6 @@ def sanitize_numeric_fields(info):
|
|||||||
|
|
||||||
self._sanitize_thumbnails(info_dict)
|
self._sanitize_thumbnails(info_dict)
|
||||||
|
|
||||||
if self.params.get('list_thumbnails'):
|
|
||||||
self.list_thumbnails(info_dict)
|
|
||||||
return
|
|
||||||
|
|
||||||
thumbnail = info_dict.get('thumbnail')
|
thumbnail = info_dict.get('thumbnail')
|
||||||
thumbnails = info_dict.get('thumbnails')
|
thumbnails = info_dict.get('thumbnails')
|
||||||
if thumbnail:
|
if thumbnail:
|
||||||
@ -2048,13 +2044,6 @@ def sanitize_numeric_fields(info):
|
|||||||
automatic_captions = info_dict.get('automatic_captions')
|
automatic_captions = info_dict.get('automatic_captions')
|
||||||
subtitles = info_dict.get('subtitles')
|
subtitles = info_dict.get('subtitles')
|
||||||
|
|
||||||
if self.params.get('listsubtitles', False):
|
|
||||||
if 'automatic_captions' in info_dict:
|
|
||||||
self.list_subtitles(
|
|
||||||
info_dict['id'], automatic_captions, 'automatic captions')
|
|
||||||
self.list_subtitles(info_dict['id'], subtitles, 'subtitles')
|
|
||||||
return
|
|
||||||
|
|
||||||
info_dict['requested_subtitles'] = self.process_subtitles(
|
info_dict['requested_subtitles'] = self.process_subtitles(
|
||||||
info_dict['id'], subtitles, automatic_captions)
|
info_dict['id'], subtitles, automatic_captions)
|
||||||
|
|
||||||
@ -2142,10 +2131,20 @@ def is_wellformed(f):
|
|||||||
|
|
||||||
info_dict, _ = self.pre_process(info_dict)
|
info_dict, _ = self.pre_process(info_dict)
|
||||||
|
|
||||||
|
list_only = self.params.get('list_thumbnails') or self.params.get('listformats') or self.params.get('listsubtitles')
|
||||||
|
if list_only:
|
||||||
|
self.__forced_printings(info_dict, self.prepare_filename(info_dict), incomplete=True)
|
||||||
|
if self.params.get('list_thumbnails'):
|
||||||
|
self.list_thumbnails(info_dict)
|
||||||
if self.params.get('listformats'):
|
if self.params.get('listformats'):
|
||||||
if not info_dict.get('formats'):
|
if not info_dict.get('formats'):
|
||||||
raise ExtractorError('No video formats found', expected=True)
|
raise ExtractorError('No video formats found', expected=True)
|
||||||
self.list_formats(info_dict)
|
self.list_formats(info_dict)
|
||||||
|
if self.params.get('listsubtitles'):
|
||||||
|
if 'automatic_captions' in info_dict:
|
||||||
|
self.list_subtitles(
|
||||||
|
info_dict['id'], automatic_captions, 'automatic captions')
|
||||||
|
self.list_subtitles(info_dict['id'], subtitles, 'subtitles')
|
||||||
return
|
return
|
||||||
|
|
||||||
format_selector = self.format_selector
|
format_selector = self.format_selector
|
||||||
@ -3013,7 +3012,7 @@ def list_formats(self, info_dict):
|
|||||||
formats = info_dict.get('formats', [info_dict])
|
formats = info_dict.get('formats', [info_dict])
|
||||||
new_format = (
|
new_format = (
|
||||||
'list-formats' not in self.params.get('compat_opts', [])
|
'list-formats' not in self.params.get('compat_opts', [])
|
||||||
and self.params.get('list_formats_as_table', True) is not False)
|
and self.params.get('listformats_table', True) is not False)
|
||||||
if new_format:
|
if new_format:
|
||||||
table = [
|
table = [
|
||||||
[
|
[
|
||||||
@ -3048,12 +3047,13 @@ def list_formats(self, info_dict):
|
|||||||
header_line = ['format code', 'extension', 'resolution', 'note']
|
header_line = ['format code', 'extension', 'resolution', 'note']
|
||||||
|
|
||||||
self.to_screen(
|
self.to_screen(
|
||||||
'[info] Available formats for %s:\n%s' % (info_dict['id'], render_table(
|
'[info] Available formats for %s:' % info_dict['id'])
|
||||||
|
self.to_stdout(render_table(
|
||||||
header_line,
|
header_line,
|
||||||
table,
|
table,
|
||||||
delim=new_format,
|
delim=new_format,
|
||||||
extraGap=(0 if new_format else 1),
|
extraGap=(0 if new_format else 1),
|
||||||
hideEmpty=new_format)))
|
hideEmpty=new_format))
|
||||||
|
|
||||||
def list_thumbnails(self, info_dict):
|
def list_thumbnails(self, info_dict):
|
||||||
thumbnails = list(info_dict.get('thumbnails'))
|
thumbnails = list(info_dict.get('thumbnails'))
|
||||||
@ -3063,7 +3063,7 @@ def list_thumbnails(self, info_dict):
|
|||||||
|
|
||||||
self.to_screen(
|
self.to_screen(
|
||||||
'[info] Thumbnails for %s:' % info_dict['id'])
|
'[info] Thumbnails for %s:' % info_dict['id'])
|
||||||
self.to_screen(render_table(
|
self.to_stdout(render_table(
|
||||||
['ID', 'width', 'height', 'URL'],
|
['ID', 'width', 'height', 'URL'],
|
||||||
[[t['id'], t.get('width', 'unknown'), t.get('height', 'unknown'), t['url']] for t in thumbnails]))
|
[[t['id'], t.get('width', 'unknown'), t.get('height', 'unknown'), t['url']] for t in thumbnails]))
|
||||||
|
|
||||||
@ -3080,7 +3080,7 @@ def _row(lang, formats):
|
|||||||
names = [] if names[0] == 'unknown' else names[:1]
|
names = [] if names[0] == 'unknown' else names[:1]
|
||||||
return [lang, ', '.join(names), ', '.join(exts)]
|
return [lang, ', '.join(names), ', '.join(exts)]
|
||||||
|
|
||||||
self.to_screen(render_table(
|
self.to_stdout(render_table(
|
||||||
['Language', 'Name', 'Formats'],
|
['Language', 'Name', 'Formats'],
|
||||||
[_row(lang, formats) for lang, formats in subtitles.items()],
|
[_row(lang, formats) for lang, formats in subtitles.items()],
|
||||||
hideEmpty=True))
|
hideEmpty=True))
|
||||||
|
Loading…
Reference in New Issue
Block a user