diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-04-19 22:33:52 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-04-19 22:33:52 +0600 |
commit | c0dea0a782a1035225ad25d556e398e2909f62db (patch) | |
tree | e2a9a97517f30701ab09d2f137cc4e902ab83d38 | |
parent | 70947ea7b13d22a55756dc2b6d086e058edd91b1 (diff) |
[YoutubeDL] Respect explicit `--merge-format-output` for uncompatible formats as well
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 5dd9d2430..3bb350e2a 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -1390,8 +1390,7 @@ class YoutubeDL(object): return False requested_formats = info_dict['requested_formats'] - # Merge incompatible formats into mkv - if not compatible_formats(requested_formats): + if self.params.get('merge_output_format') is None and not compatible_formats(requested_formats): filename = os.path.splitext(filename)[0] + '.mkv' self.report_warning('You have requested formats uncompatible for merge. ' 'The formats will be merged into mkv') |