mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
parent
bb66c24797
commit
88f23a18e0
10 changed files with 16 additions and 12 deletions
|
@ -484,6 +484,7 @@ class YoutubeDL(object):
|
|||
extractor_args: A dictionary of arguments to be passed to the extractors.
|
||||
See "EXTRACTOR ARGUMENTS" for details.
|
||||
Eg: {'youtube': {'skip': ['dash', 'hls']}}
|
||||
mark_watched: Mark videos watched (even with --simulate). Only for YouTube
|
||||
youtube_include_dash_manifest: Deprecated - Use extractor_args instead.
|
||||
If True (default), DASH manifests and related
|
||||
data will be downloaded and processed by extractor.
|
||||
|
@ -3504,7 +3505,7 @@ class YoutubeDL(object):
|
|||
delim=self._format_screen('\u2500', self.Styles.DELIM, '-', test_encoding=True))
|
||||
|
||||
def render_thumbnails_table(self, info_dict):
|
||||
thumbnails = list(info_dict.get('thumbnails'))
|
||||
thumbnails = list(info_dict.get('thumbnails') or [])
|
||||
if not thumbnails:
|
||||
return None
|
||||
return render_table(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue