Audio Recording
Rust Quick Start
Platforms
- Linux (x86_64)
- macOS (x86_64, arm64)
- Windows (x86_64)
- Raspberry Pi (Zero, 3, 4, 5)
Requirements
- Rust 1.54+
- Cargo
Quick Start
Setup
Download and install Rust.
Add
pv_recorder
to theCargo.toml
manifest:
Usage
Initialize and begin recording:
Read a frame of audio:
To stop recording:
Selecting an Audio Device
To get a list of available audio devices:
The index of the device in the returned list can be used in PvRecorderBuilder
to select that device for audio capture:
Demo
For the PvRecorder Rust SDK, we offer a demo application that demonstrates how use PvRecorder
to record audio to an output audio file.
Setup
Clone the PvRecorder GitHub Repository:
Usage
Use the --help
flag to see the usage options for the demo:
Run the following to see what devices are available for audio capture:
Run the demo with the desired audio device (or -1 for the default one) and an output file path:
For more information about our PvRecorder demo for Rust, head over to our GitHub repository.