I made a guitar tuner app using Flutter and Rust
11–20 of 153 posts
Re: I made a guitar tuner app using Flutter and Rust
#12We’re you inspired by the GuitarTuna iPhone app?
Re: I made a guitar tuner app using Flutter and Rust
#13Looks very nice, would you tell us a little bit about what you used to build this? I am just getting started with Rust and it would be cool to hear what approach you went and what you would recommend when starting today.
More details on Rust backend:
For listening (getting audio signal from microphone) I used:
- Android: https://crates.io/crates/oboe
- native desktop/iOS (not currently released): https://crates.io/crates/clap
- Web: https://crates.io/crates/web-sys (so basically JS Web Audio API called from Rust compiled to WASM).
For pitch detection:
Re: I made a guitar tuner app using Flutter and Rust
#14Re: I made a guitar tuner app using Flutter and Rust
#15I would love to see the source code, or at least a simplified version. Audio input in rust and rust talking with flutter on mobile device. Such a cool project.
Re: I made a guitar tuner app using Flutter and Rust
#16Re: I made a guitar tuner app using Flutter and Rust
#17Nice! We’re you inspired by the GuitarTuna iPhone app?
Re: I made a guitar tuner app using Flutter and Rust
#18Looks very nice, would you tell us a little bit about what you used to build this? I am just getting started with Rust and it would be cool to hear what approach you went and what you would recommend when starting today.
Flutter for the UI. Rust for the listening, and pitch detecting backend. Connected the former with the latter using flutter_rust_bridge. More details on Rust backend: For listening (getting audio signal from microphone) I used: - Android: https://crates.io/crates/oboe - native desktop/iOS (not currently released): https://crates.io/crates/clap - Web: https://crates.io/crates/web-sys (so basically JS Web Audio API cal…
Re: I made a guitar tuner app using Flutter and Rust
#19So how do you tune 7 string guitars? :)
Re: I made a guitar tuner app using Flutter and Rust
#20I would love to see the source code, or at least a simplified version. Audio input in rust and rust talking with flutter on mobile device. Such a cool project.