Update http_streamer.py
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Sun, 2 Jun 2019 10:33:20 +0000 (12:33 +0200)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Sun, 2 Jun 2019 10:33:20 +0000 (12:33 +0200)
typo

music_assistant/modules/http_streamer.py

index be0df8f7ff15db8d39fbfa495cbef0bfbacefb28..c8e262094df709e6451df7144cffc7b4d122182e 100755 (executable)
@@ -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)