rust-jack
rust-jack copied to clipboard
No audio out with sine example
I have copied the sine demo from the examples folder and run it but I get no audio out
Output from the program
$ cargo run
Finished dev [unoptimized + debuginfo] target(s) in 0.01s
Running `target/debug/synth_test`
Enter an integer value to change the frequency of the sine wave.
3000
JACK is running and seems to be set up correct because Ardour is working fine on it.
The sine example doesn't hook itself up to your computer's output. Run it, open qjackctl, click Graph, and connect rust_jack_sine to your audio out ("playback_1" and "playback_2" in system for me)
This seems to be a common point of confusion for people that are less familiar with JACK. We could probably hardcode connecting to playback_1 and playback_2 since this is what most people expect.