A cross-platform audio recording/playback CLI tool with TUI, written in Rust. The goal is to be an audio Swiss Army Knife (asak), like SoX but more interactive and fun.
You need to have
cargo
installed, see here.
cargo install asak
Note: Make sure the JACK Audio Connection Kit is installed on your machine prior to installing asak
. For instance, on Ubuntu/Mint, if nothing is returned when running sudo dpkg -l | grep libjack
, you will need to sudo apt install libjack-dev
.
asak --help
asak rec hello
If no output name is provided, a prompt will come for you to input output file name. UTC format such as
2024-04-14T09:17:40Z.wav
will be provided as initial file name.
asak play hello.wav
If no input name is provided, it will search current directory for
.wav
files and open an interactive menu.
asak monitor
Reminder:
⚠️ Watch your volume when play the video below❗️
2024-05-22.12-45-14.mp4
Known issue: you need to select the same output device as the one in your current system settings.
- record audio
- basic audio playback
- monitoring an input device with an output device
- rec device, dur, sr, ch, fmt
- play device, dur, sr, ch, fmt
- playback live pos control
- live amp + fx (reverb, delay, etc)
- passthru + live fx
Just open an issue or PR, I'm happy to discuss and collaborate.