From d9b55ec77774ae62e8a1e01088c6cbb1312b2d56 Mon Sep 17 00:00:00 2001 From: Krutyi 4el <60041069+Krutyi-4el@users.noreply.github.com> Date: Sat, 18 Nov 2023 13:26:47 +0200 Subject: [PATCH] redirect FFmpeg stderr to bot stderr --- musicbot/audiocontroller.py | 1 + 1 file changed, 1 insertion(+) diff --git a/musicbot/audiocontroller.py b/musicbot/audiocontroller.py index 5f5cb024..1b260653 100644 --- a/musicbot/audiocontroller.py +++ b/musicbot/audiocontroller.py @@ -327,6 +327,7 @@ async def play_song(self, song: Song): before_options="-reconnect 1 -reconnect_streamed 1" " -reconnect_delay_max 5", options="-loglevel error", + stderr=sys.stderr, ), after=self.next_song, )