1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-04 18:09:36 +02:00

Add filename to --dump-json output (Fixes #1908)

This commit is contained in:
Philipp Hagemeister 2013-12-09 04:31:18 +01:00
parent 2a18bc9a4b
commit a0d96c9843

View File

@ -751,6 +751,7 @@ def process_info(self, info_dict):
if self.params.get('forceformat', False):
self.to_stdout(info_dict['format'])
if self.params.get('forcejson', False):
info_dict['_filename'] = filename
self.to_stdout(json.dumps(info_dict))
# Do nothing else if in simulate mode