Skip to content

Commit

Permalink
List playlist thumbnails in --list-thumbnails
Browse files Browse the repository at this point in the history
  • Loading branch information
pukkandan committed Jan 21, 2022
1 parent 78ab4f4 commit 0bfc53d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1808,7 +1808,7 @@ While these options are almost the same as their new counterparts, there are som

-j, --dump-json --print "%()j"
-F, --list-formats --print formats_table
--list-thumbnails --print thumbnails_table
--list-thumbnails --print thumbnails_table --print playlist:thumbnails_table
--list-subs --print automatic_captions_table --print subtitles_table

#### Redundant options
Expand Down
5 changes: 4 additions & 1 deletion yt_dlp/YoutubeDL.py
Original file line number Diff line number Diff line change
Expand Up @@ -1709,7 +1709,10 @@ def get_entry(i):
ie_result['requested_entries'] = playlistitems

_infojson_written = False
if not self.params.get('simulate') and self.params.get('allow_playlist_files', True):
write_playlist_files = self.params.get('allow_playlist_files', True)
if write_playlist_files and self.params.get('list_thumbnails'):
self.list_thumbnails(ie_result)
if write_playlist_files and not self.params.get('simulate'):
ie_copy = self._playlist_infodict(ie_result, n_entries=n_entries)
_infojson_written = self._write_info_json(
'playlist', ie_result, self.prepare_filename(ie_copy, 'pl_infojson'))
Expand Down

0 comments on commit 0bfc53d

Please sign in to comment.