Recorder library for Picovoice.
Project description
PV_Recorder
A cross platform audio recorder to read one channel and 16kHz samples.
Requirements
- Python 3
Compatibility
- Windows (amd64)
- macOS
- x86_64
- arm64
- Linux (x86_64)
- Raspberry Pi:
- Zero
- 2
- 3 (32 and 64 bit)
- 4 (32 and 64 bit)
- NVIDIA Jetson Nano
- BeagleBone
Installation
pip3 install pvrecorder
Usage
Getting the list of input devices does not require an instance:
from pvrecorder import PVRecorder
devices = PVRecorder.get_audio_devices()
To start recording initialize the instance and run start:
from pvrecorder import PvRecorder
recorder = PvRecorder(device_index=-1, frame_length=512)
recorder.start()
Get the pcm frames by calling the read function:
pcm = recorder.read()
# do something with pcm
To stop recording just run stop on the instance:
recorder.stop()
Once you are done, free the used resources. You do not have to call stop before delete:
recorder.delete()
Demo
For more detailed information on how to use the pv_recorder python sdk, please that a look at demo.py.
In the following instructions, we will refer to {AUDIO_DEVICE_INDEX} as the index of the audio device to use, and {OUTPUT_PATH} as the path to save the audio data in wav format.
{AUDIO_DEVICE_INDEX} defaults to -1 and {OUTPUT_PATH} can be empty if you wish to not save any data.
To show the available audio devices run:
python3 demo.py --show_audio_devices
To run audio recorder run:
python3 demo.py --audio_device_index {AUDIO_DEVICE_INDEX} --output_path {OUTPUT_PATH}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pvrecorder-1.0.2.tar.gz.
File metadata
- Download URL: pvrecorder-1.0.2.tar.gz
- Upload date:
- Size: 2.9 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed42daf3a40bec3830cab9b7d82f3838a353c3929a52d3eeecbff1774e3fbc3b
|
|
| MD5 |
5223057628ffff8d9b65c7c125c76afd
|
|
| BLAKE2b-256 |
a9ef3b67a55fd34be716f487d17d121465302b94b2eccfc19c56ee0b0d7261f7
|
File details
Details for the file pvrecorder-1.0.2-py3-none-any.whl.
File metadata
- Download URL: pvrecorder-1.0.2-py3-none-any.whl
- Upload date:
- Size: 2.9 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9cb07894997f872ecaf75d8cdc166d5cb080770d8c72268d00c11cb9e38a7201
|
|
| MD5 |
5061fb4e0898fefc68a47c5d0a416a51
|
|
| BLAKE2b-256 |
76728ac15b9d5eb9765b4f95e5d202904252dac77148c09b2f218bc117d1ddf9
|