Audio Recording
Go Quick Start
Platforms
- Linux (x86_64)
- macOS (x86_64, arm64)
- Windows (x86_64)
- Raspberry Pi (3, 4, 5)
Requirements
- Go 1.16+
- Windows only: a gcc compiler like Mingw in $PATH
Quick Start
Setup
Download and install Go language.
Install the Porcupine Go Package using the Go CLI:
Usage
Initialize and begin recording:
Read a frame of audio:
To stop recording:
Once you are done, free the used resources. You do not have to call Stop()
before Delete()
:
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 Init()
to select that device for audio capture:
Demo
For the PvRecorder Go SDK, we offer a demo application that demonstrates how use PvRecorder
to record audio to an output audio file.
Setup
Clone the Porcupine GitHub Repository:
Usage
Use the -h
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 Go, head over to our GitHub repository.