[pulseaudio-discuss] Recipe: recording sound card input and output

Joel jm-hotmail at hotmail.com
Fri Oct 15 10:19:48 UTC 2021


Chris -

Are you operating an SDR rig or one of the digital modes (e.g., JTx, FTx, etc.)?


Joel W2TQ

973 736 8306

________________________________
From: pulseaudio-discuss <pulseaudio-discuss-bounces at lists.freedesktop.org> on behalf of Chris Keller <xylo04 at gmail.com>
Sent: Thursday, October 14, 2021 9:25 PM
To: pulseaudio-discuss at lists.freedesktop.org <pulseaudio-discuss at lists.freedesktop.org>
Subject: [pulseaudio-discuss] Recipe: recording sound card input and output

Hi folks,

I just spent a while figuring out how to solve a particular need and want to save it in the mailing list for posterity.

I'm an amateur radio operator, and we make extensive use of external sound cards for interfacing computers with radios for digital communication modes. I was experiencing a problem where I really wanted to record received audio (RX) to the left channel of a file, and transmitted audio (TX) to the right channel. Doing so would let me hear exactly what the modem program heard and sent.

After much fussing, I found an arrangement that worked: set up a null-sink to represent the rx-tx stream I wanted, then use two loopbacks, one each for RX and TX. Once that was set up, recording the file was simple.

# BurrBrown chipset used in SignaLink USB
SOUND_CARD="BurrBrown"
RADIO_RX=$(pacmd list-sources | egrep "input.*$SOUND_CARD" | grep -oP "<\K[^ >]+")
RADIO_TX=$(pacmd list-sources | egrep "output.*$SOUND_CARD.*monitor" | grep -oP "<\K[^ >]+")
pactl load-module module-null-sink sink_name=rxtx sink_properties=device.description=RXTX
pactl load-module module-loopback source=$RADIO_RX sink=rxtx channels=1 channel_map=left
pactl load-module module-loopback source=$RADIO_TX sink=rxtx channels=1 channel_map=right

[Radio Interface Source_Sink.jpg]

Hopefully this will help someone in the future looking to record both the input and output to a sound card!

Chris Keller, K0SWE
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/pulseaudio-discuss/attachments/20211015/94292eb6/attachment-0001.htm>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Radio Interface Source_Sink.jpg
Type: image/jpeg
Size: 23449 bytes
Desc: Radio Interface Source_Sink.jpg
URL: <https://lists.freedesktop.org/archives/pulseaudio-discuss/attachments/20211015/94292eb6/attachment-0001.jpg>


More information about the pulseaudio-discuss mailing list