pv_recorder

Crates.iopv_recorder
lib.rspv_recorder
version1.2.3
sourcesrc
created_at2021-09-07 18:22:15.569416
updated_at2024-09-13 19:59:12.430043
descriptionRust recorder library for Picovoice
homepage
repositoryhttps://github.com/Picovoice/pvrecorder
max_upload_size
id448173
size8,670,604
Albert Ho (albho)

documentation

README

PvRecorder Binding for Python

PvRecorder

PvRecorder is an easy-to-use, cross-platform audio recorder designed for real-time speech audio processing. It allows developers access to an audio device's input stream, broken up into data frames of a given size.

Requirements

  • Rust 1.54+

Compatibility

  • Linux (x86_64)
  • macOS (x86_64 and arm64)
  • Windows (x86_64)
  • Raspberry Pi:
    • Zero
    • 3 (32 and 64 bit)
    • 4 (32 and 64 bit)
    • 5 (32 and 64 bit)

Installation

To add the pvrecorder library into your app, add pv_recorder to your app's Cargo.toml manifest:

[dependencies]
pv_recorder = "*"

Usage

Getting the list of input devices does not require an instance:

use pv_recorder::PvRecorderBuilder

let audio_devices = PvRecorderBuilder::default().get_audio_devices()?;

To start recording, initialize an instance using the builder and call start():

use pv_recorder::PvRecorderBuilder;

let frame_length = 512;
let recorder = PvRecorderBuilder::new(frame_length).init()?;
recorder.start()?

Read frames of audio:

while recorder.is_recording() {
    let frame = recorder.read()?;
    // process audio frame
}

To stop recording, call stop() on the instance:

recorder.stop()?;

Demo

The PvRecorder Rust demo is a Rust command-line application that demonstrates how to use PvRecorder to record audio to a file.

Commit count: 252

cargo fmt