-
Notifications
You must be signed in to change notification settings - Fork 376
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ALSA or JACK #929
Comments
Unrelated but why there is no jack feature declared in |
If you only need to target systems with pipewire or Linux users who care about audio latency, I would go with the JACK backend. Pipewire being the default sound system in some linux distros is pretty new, while ALSA will work almost anywhere. An implicit |
can we disable alsa if we don't want to use it at all? that way it saves having to download the dev dependencies... |
No, ALSA isn't an optional dependency on Linux, but you could use rust-jack directly on Linux, it's very little extra code: https://github.com/RustAudio/rust-jack/blob/main/examples/sine.rs |
Should i use ALSA or JACK ? Looking at the documentation, ALSA doesn't have a dedicated thread. JACK is not mentioned. And ALSA is the default backend.
The text was updated successfully, but these errors were encountered: