Console-based Audio Visualizer for ALSA
also supports audio input from Pulseaudio, fifo (mpd), sndio, squeezelite and portaudio (macOS).
- What it is
- Installing
- Capturing audio
- Running via ssh
- Troubleshooting
- Usage
- Configuration
- Using cava in other applications
- Contribution
C.A.V.A. is a bar spectrum audio visualizer for the Linux terminal using ALSA, pulseaudio or fifo buffer for input.
This program is not intended for scientific use. It's written to look responsive and aesthetic when used to visualize music.
Required components:
Recomended components:
- ncursesw dev files (bundled in ncurses in arch)
- ALSA dev files, or
- Pulseaudio dev files, or
- Portaudio, or
- Sndio
Optional components:
- SDL2 dev files
Only FFTW and the other build tools are actually required for CAVA to compile, but this will only give you the ability to read from fifo files. To more easly grab audio from your system pulseaudio, alsa, sndio or portaudio dev files are recommended (depending on what audio system you are using). Not sure how to get the pulseaudio dev files for other distros than debian/ubuntu or if they are bundled in pulseaudio.
For better a better visual experience ncurses is also recomended.
All the requirements can be installed easily in all major distros:
Debian Buster or higher/Ubuntu 18.04 or higher:
apt install libfftw3-dev libasound2-dev libncursesw5-dev libpulse-dev libtool automake autoconf-archive libiniparser-dev libsdl2-2.0-0 libsdl2-dev
older Debian/Ubuntu:
apt install libfftw3-dev libasound2-dev libncursesw5-dev libpulse-dev libtool automake
ArchLinux:
pacman -S base-devel fftw ncurses alsa-lib iniparser pulseaudio autoconf-archive
openSUSE:
zypper install alsa-devel ncurses-devel fftw3-devel libpulse-devel libtool autoconf-archive
Fedora:
dnf install alsa-lib-devel ncurses-devel fftw3-devel pulseaudio-libs-devel libtool autoconf-archive
macOS:
First install homebrew if you have't already:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Then install prerequisites:
brew install fftw ncurses libtool automake autoconf-archive portaudio
Then fix macOS not finding libtool and ncursesw:
export LIBTOOL=`which glibtool`
export LIBTOOLIZE=`which glibtoolize`
ln -s `which glibtoolize` /usr/local/bin/libtoolize
ln -s /usr/lib/libncurses.dylib /usr/local/lib/libncursesw.dylib
Tested on macOS Big Sur
First of all clone this repo and cd in to it, then run:
./autogen.sh
./configure
make
If you have a recommended component installed, but do not wish to use it (perhaps if building a binary on one machine to be used on another), then the corresponding feature can be disabled during configuration (see configure --help for details).
Install cava
to default /usr/local
:
make install
Or you can change PREFIX
, for example:
./configure --prefix=PREFIX
make uninstall
All distro specific instalation sources might be out of date. Please check version before reporting any issues here.
Tumbleweed users have cava in their repo. They can just use:
zypper in cava
Leap users need to add the multimedia:apps repository first:
zypper ar -f obs://multimedia:apps/openSUSE_Leap_42.2 multimedia
If you use another version just replace openSUSE_Leap_42.2 with openSUSE_13.2, adjust it to your version.
Cava is available in Fedora 26 and later. You can install Cava by running:
dnf install cava
Cava is in AUR.
pacaur -S cava
apt install cava
Harshal Sheth has added CAVA to his PPA, it can be installed with:
add-apt-repository ppa:hsheth2/ppa
apt update
apt install cava
cava is in homebrew.
brew install cava
Just make sure you have installed pulseaudio dev files and that cava has been built with pulseaudio support (it should be automatically if the dev files are found).
If you're lucky all you have to do is to run cava.
If nothing happens you might have to use a different source than the default. The default might also be your microphone. Look at the config file for help.
Set
method = alsa
in the config file.
ALSA can be difficult because there is no native way to grab audio from an output. If you want to capture audio straight fom the output (not just mic or line-in), you must create an ALSA loopback interface, then output the audio simultaneously to both the loopback and your normal interface.
To create a loopback interface simply run:
sudo modprobe snd_aloop
Hopefully your aplay -l
should now contain a loopback interface.
To make it persistent across boot add the line snd-aloop
to "/etc/modules". To keep it from being loaded as the first soundcard add the line options snd-aloop index=1
to "/etc/modprobe.d/alsa-base.conf", this will load it at '1'. You can replace '1' with whatever makes most sense in your audio setup.
Playing the audio through your Loopback interface makes it possible for cava to capture it, but there will be no sound in your speakers. In order to play audio on the loopback interface and your actual interface you must make use of the ALSA multi channel.
Look at the included example file example_files/etc/asound.conf
on how to use the multi channel. I was able to make this work on my laptop (an Asus UX31 running Ubuntu), but I had no luck with the ALSA method on my Raspberry Pi (Rasbian) with an USB DAC. The PulseAudio method however works perfectly on my Pi.
Read more about the ALSA method here.
If you are having problems with the alsa method on Rasberry PI, try enabling mmap
by adding the following line to /boot/config.txt
and reboot:
dtoverlay=i2s-mmap
Add these lines in mpd:
audio_output {
type "fifo"
name "my_fifo"
path "/tmp/mpd.fifo"
format "44100:16:2"
}
Uncomment and change input method to fifo
in the config file.
The path of the fifo can be specified with the source
parameter.
I had some trouble with sync (the visualizer was ahead of the sound). Reducing the ALSA buffer in mpd fixed it:
audio_output {
type "alsa"
name "My ALSA"
buffer_time "50000" # (50ms); default is 500000 microseconds (0.5s)
}
sndio is the audio framework used on OpenBSD, but it's also available on FreeBSD and Linux. So far this is only tested on FreeBSD.
To test it
# Start sndiod with a monitor sub-device
$ sndiod -dd -s default -m mon -s monitor
# Set the AUDIODEVICE environment variable to override the default
# sndio device and run cava
$ AUDIODEVICE=snd/0.monitor cava
squeezelite is one of several software clients available for the Logitech Media Server. Squeezelite can export its audio data as shared memory, which is what this input module uses. Just adapt your config:
method = shmem
source = /squeezelite-AA:BB:CC:DD:EE:FF
where AA:BB:CC:DD:EE:FF
is squeezelite's MAC address (check the LMS Web GUI (Settings>Information) if unsure).
Note: squeezelite must be started with the -v
flag to enable visualizer support.
Note: Cava doesn't render correctly within the default macOS terminal. In order to achieve an optimal display, install Kitty. Beware that you may run in to the issue presented in #109; however, it can be resolved with this.
Background Music
Install Background Music which provides a loopback interface automatically. Once installed and running just edit your config to use this interface with portaudio:
method = portaudio
source = "Background Music"
Sound Flower
Soundflower also works to create a loopback interface. Use Audio MIDI Setup to configure a virtual interface that outputs audio to both your speakers and the loopback interface, following this recipe. By creating a multi-output device you lose the ability to control the volume on your keyboard. Because of this, we recommend the Background Music app which still gives you keyboard controls.
Then edit your config to use this interface with portaudio:
method = portaudio
source = "Soundflower (2ch)"
@quantum5 has written a handy tool called winscap to capture audio from Windows and output it to stdout. This way cava can be used in a terminal running windows subsystem for linux. Just follow the instructions in the readme on how to set it up with cava.
To run via ssh to an external monitor, redirect output to /dev/console
:
~# ./cava <> /dev/console >&0 2>&1
exit with ctrl+z then run 'bg' to keep it running after you log out.
(You must be root to redirect to console. Simple sudo is not enough: Run sudo su
first.)
Most likley issue #399. Locale settings need to be set correctly in order for cava to work.
This is a known issue with pipewire. Try the workaround described here
This is either an issue with the font, or line spacing being enabled in the terminal emulator. Try to change font or disable line spacing.
Since the graphics are simply based on characters, try decreasing the font size.
Some terminal emulators are just slow. Cava will look best in a GPU based terminal like kitty or alacritty. You can also try to increase the font size
If you run cava in a TTY (like ctrl+alt+F2) the program will change the font to the included cava.psf
(actually a slightly modified "unifont").
In console fonts it seems that only 256 Unicode characters are supported, probably because they are bitmap fonts. I could not find a font with Unicode characters 2581-2587 (the 1/8 - 7/8 blocks used on the top of each bar to increase resolution).
So in cava.psf
, the characters 1-7 are actually replaced by Unicode characters 2581-2587. When cava exits, it changes the font back. If cava exits abnormally and you notice that 1-7 are replaced by partial blocks, just change the font with setfont
.
Actually, setfont
is supposed to return the default font, but this usually isn't set. I haven't found another way to get the current font. So cava sets the font to "Lat2-Fixed16" when interrupted. All major distros should have it. It will revert to your default font at reboot.
Usage : cava [options]
Visualize audio input in terminal.
Options:
-p path to config file
-v print version
Exit with ctrl+c or q.
If cava quits unexpectedly or is force killed, echo must be turned on manually with stty -echo
.
NOTE: only works in ncurses output mode.
Key | Description |
---|---|
up / down | increase/decrease sensitivity |
left / right | increase/decrease bar width |
f / b | change foreground/background color |
r | Reload configuration |
c | Reload colors only |
q or CTRL-C | Quit C.A.V.A. |
As of version 0.4.0 all options are done in the config file, no more command-line arguments!
By default a configuration file is created upon first launch in $XDG_CONFIG_HOME/cava/config
or $HOME/.config/cava/config
, but cava can also be made to use a different file with the -p
option.
Sending cava a SIGUSR1 signal, will force cava to reload its configuration file. Thus, it behaves as if the user pressed r in the terminal. One might send a SIGUSR1 signal using pkill
or killall
.
For example:
$ pkill -USR1 cava
Similarly, sending cava a SIGUSR2 signal will only reload the colors from the configuration file, which is the same as pressing c in the terminal. This is slightly faster than reloading the entire config as the audio processing does not need to reinitialize.
$ pkill -USR2 cava
Examples on how the equalizer works:
[eq]
1=0
2=1
3=0
4=1
5=0
[eq]
1=2
2=2
3=1
4=1
5=0.5
The core processing engine in cava has been split into a separate library cavacore
. See CAVACORE.md for details.
You can also use Cava's output for other programs by using raw output mode, which will write bar data to STDOUT
that can be piped into other processes. More information on this option is documented in the example config file.
A useful starting point example script written in python that consumes raw data can be found here.
Please read CONTRIBUTING.md before opening a pull request.
Thanks to:
for major contributions in the early development of this project.
Also thanks to dpayne for figuring out how to find the pulseaudio default sink name.