mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Use the option in preparing the merge output filename
This commit is contained in:
parent
34c781a24d
commit
d02115f837
1 changed files with 1 additions and 1 deletions
|
@ -912,7 +912,7 @@ def process_video_result(self, info_dict, download=True):
|
||||||
selected_format = {
|
selected_format = {
|
||||||
'requested_formats': formats_info,
|
'requested_formats': formats_info,
|
||||||
'format': rf,
|
'format': rf,
|
||||||
'ext': formats_info[0]['ext'],
|
'ext': self.params['merge_output_format'] if self.params['merge_output_format'] is not None else formats_info[0]['ext'],
|
||||||
}
|
}
|
||||||
else:
|
else:
|
||||||
selected_format = None
|
selected_format = None
|
||||||
|
|
Loading…
Reference in a new issue