diff options
author | Andrei Troie <andreitroie90@gmail.com> | 2015-01-10 00:29:06 +0000 |
---|---|---|
committer | Andrei Troie <andreitroie90@gmail.com> | 2015-01-10 00:29:06 +0000 |
commit | d02115f83727ae0d4f394073235dc97086c64266 (patch) | |
tree | 3233cd386eae6510cd0c2b6eceb422874a1a7010 | |
parent | 34c781a24d1cc9b424ddc3ab3c4c616f49642c6a (diff) |
Use the option in preparing the merge output filename
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 24d6c2de7..6d5c401df 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -912,7 +912,7 @@ class YoutubeDL(object): selected_format = { 'requested_formats': formats_info, '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: selected_format = None |