From 19807826f7c79dae319f56680c971dbc2cc1fcaa Mon Sep 17 00:00:00 2001 From: pukkandan Date: Thu, 7 Jan 2021 17:11:39 +0530 Subject: [PATCH] Fix bug in default format selection --- youtube_dlc/YoutubeDL.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/youtube_dlc/YoutubeDL.py b/youtube_dlc/YoutubeDL.py index 19666d0ad..01d26cff2 100644 --- a/youtube_dlc/YoutubeDL.py +++ b/youtube_dlc/YoutubeDL.py @@ -1194,14 +1194,14 @@ class YoutubeDL(object): and download and ( not can_merge() - or info_dict.get('is_live') + or info_dict.get('is_live', False) or self.params.get('outtmpl', DEFAULT_OUTTMPL) == '-')) return ( 'best/bestvideo+bestaudio' if prefer_best else 'bestvideo*+bestaudio/best' - if self.params.get('allow_multiple_audio_streams', False) + if not self.params.get('allow_multiple_audio_streams', False) else 'bestvideo+bestaudio/best') def build_format_selector(self, format_spec):