mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-01-07 17:16:08 +00:00
This commit is contained in:
parent
ffbc3901d2
commit
4070b458ec
|
@ -1337,8 +1337,11 @@ class YoutubeDL(object):
|
||||||
self.to_screen('[info] Video description metadata is already present')
|
self.to_screen('[info] Video description metadata is already present')
|
||||||
else:
|
else:
|
||||||
self.to_screen('[info] Writing video description metadata as JSON to: ' + infofn)
|
self.to_screen('[info] Writing video description metadata as JSON to: ' + infofn)
|
||||||
|
filtered_info_dict = dict(
|
||||||
|
(k, v) for k, v in info_dict.items()
|
||||||
|
if not k in ['requested_formats', 'requested_subtitles'])
|
||||||
try:
|
try:
|
||||||
write_json_file(info_dict, infofn)
|
write_json_file(filtered_info_dict, infofn)
|
||||||
except (OSError, IOError):
|
except (OSError, IOError):
|
||||||
self.report_error('Cannot write metadata to JSON file ' + infofn)
|
self.report_error('Cannot write metadata to JSON file ' + infofn)
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in a new issue