Unverified Commit 2777562a authored by Mike Decker's avatar Mike Decker Committed by GitHub
Browse files

Fix default backend for Linux (#1329)

parent 53af9779
......@@ -59,7 +59,7 @@ def set_audio_backend(backend: Optional[str]):
def _init_audio_backend():
backends = list_audio_backends()
if 'sox' in backends:
if 'sox_io' in backends:
set_audio_backend('sox_io')
elif 'soundfile' in backends:
set_audio_backend('soundfile')
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment