How to record audio

Stable: 08.06.2022 - 11:48 / Revision: 08.06.2022 - 11:35

I am here to prevent the first-page-empty bug!

Template:ArticleMainWriter Template:ArticleApprovedVersion


1 Article purpose

This article explains how to record audio via the kernel ALSA audio framework in Linux® OS context. The examples below, show how to record audio from the different audio hardware interfaces of the STM32MPU boards.

2 Audio record overview

The ALSA framework exposes audio devices associated to the board audio hardware interfaces.

The application audio streams are routed by default through the PulseAudio sound server. PulseAudio exposes audio profiles, which are mapped on the ALSA sound card audio devices. The PulseAudio server provides a command line interface to list audio profiles and to select one, in order to record from a specific audio interface.

The audio record examples in following sections are based on ALSA utilities. Some input paths are configured through ALSA controls. These configurations are detailed in sound card configuration article. If an error is issued when running an example, please refer to Audio troubleshooting grid article for debug.

3 Examples

3.1 Audio record from headset microphone input

  • Record from ALSA device

Launch audio record from 'record_codec' ALSA device:

Info white.png Information
'record_codec' is an alias defined in /etc/asound.conf, for headset microphone input device.
 arecord -D record_codec -f S16_LE -d 10 /tmp/rec.wav
  • Record via PulseAudio

Change Pulseaudio active profile of the sound card, to 'analog-stereo' profile:

Info white.png Information
The Pulseaudio analog-stereo profile is the default profile. So next command is not required after boot.
Info white.png Information
Example below is given for sound card index 0. Check sound cards index with "pactl list cards short" command.
 pacmd set-card-profile 0 output:analog-stereo+input:analog-stereo

Launch audio record:

 arecord -d 10 /tmp/rec.wav

3.2 Audio record from digital microphone input

Warning white.png Warning
The support of digital microphone input is board dependent. Please, check available inputs with "arecord -l" command.
  • Record from ALSA device

Launch audio record from 'record_dfsdm0' ALSA device:

Info white.png Information
'record_dfsdm0' is an alias defined in /etc/asound.conf, for digital microphone U1 input device.
 arecord -D record_dfsdm0 -r 16000 -f S32_LE -c 1 -d 10 /tmp/rec.wav

3.3 Audio record from S/PDIF input

Warning white.png Warning
The support of S/PDIF input is board dependent. Please, check available inputs with "arecord -l" command.
  • Record from ALSA device

Launch audio record from 'record_spdif' ALSA device:

Info white.png Information
'record_spdif' is an alias defined in /etc/asound.conf, for S/PDIF input device.
Info white.png Information
A S/PDIF signal must be available on S/PDIF RCA input connector before launching the record command. The record rate must be set according to S/PDIF signal sampling rate.
 arecord -D record_spdif -f S32_LE -c 2 -r 48000 -d 10 /tmp/rec.wav
IMPORTANT NOTICE – READ CAREFULLY
STMicroelectronics NV and its subsidiaries ("ST") reserve the right to make changes, corrections, enhancements, modifications, and improvements to ST products and/or to this document at any time without notice. Purchasers should obtain the latest relevant information on ST products before placing orders. ST products are sold pursuant to ST’s terms and conditions of sale in place at the time of order acknowledgment.

Purchasers are solely responsible for the choice, selection, and use of ST products and ST assumes no liability for application assistance or the design of purchasers’ products.

No license, express or implied, to any intellectual property right is granted by ST herein.

Resale of ST products with provisions different from the information set forth herein shall void any warranty granted by ST for such product.

ST and the ST logo are trademarks of ST. For additional information about ST trademarks, refer to www.st.com/trademarks. All other product or service names are the property of their respective owners.

Information in this document supersedes and replaces information previously supplied in any prior versions of this document.