Monitoring input audio with Ubuntu

Monitoring an audio source is a term audio folks use to say that they send the signal from an audio input source (eg. line in or microphone) to an auxiliary audio output (eg. headphones) so that they can listen to the input signal in real time. Windows 10 allows this out of the box, it’s a bit harder to do with Ubuntu.

Here are a few ways to do this

Pulseaudio loopback

Jon F says:

pactl load-module module-loopback

This pushes the default input to the default output. I haven’t researched how to address other in/outputs than the default one.

This command will stop monitoring:

pactl unload-module module-loopback

Piping

arecord -f cd --buffer-size=1500 - | aplay --buffer-size=1500 -

arecord records in CD format from the default device and writes it to stdout (the – character). aplay reads from stdin and plays to the standard output device. –buffer-size is optional, but not specifying it produces a rather high latency; you should pick the lowest value that works. On Ubuntu 18.04 and the Acer Nitro 5 a buffer size of 1500 worked well.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.