From 1edf13550b4b6b3a9c36347c54743e1087e8457f Mon Sep 17 00:00:00 2001 From: Marcel van der Veldt Date: Sun, 2 Jun 2019 12:33:20 +0200 Subject: [PATCH] Update http_streamer.py typo --- music_assistant/modules/http_streamer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/music_assistant/modules/http_streamer.py b/music_assistant/modules/http_streamer.py index be0df8f7..c8e26209 100755 --- a/music_assistant/modules/http_streamer.py +++ b/music_assistant/modules/http_streamer.py @@ -103,7 +103,7 @@ class HTTPStreamer(): else: input_content_type = "mp3" if input_content_type == "aac": - args = 'ffmpeg -i "%s" -f flac - | sox -t flac -t flac -C 0 - %s' % (stream_url, sox_effects) + args = 'ffmpeg -i "%s" -f flac - | sox -t flac - -t flac -C 0 - %s' % (stream_url, sox_effects) else: args = 'sox -t %s "%s" -t flac -C 0 - %s' % (input_content_type, stream_url, sox_effects) LOGGER.info("Running sox with args: %s" % args) -- 2.34.1