Picovoice Platform
Node.js Quick Start
Platforms
- Linux (x86_64)
- macOS (x86_64, arm64)
- Windows (x86_64)
- Raspberry Pi (3, 4, 5)
Looking to run Picovoice in-browser?
This binding is for Node.js and does not work in a browser. There are SDK packages available for Web, and dedicated packages for Angular , React, and Vue.js.
Requirements
- Picovoice Account & AccessKey
- Node.js 16+
- npm
Picovoice Account & AccessKey
Signup or Login to Picovoice Console to get your AccessKey
.
Make sure to keep your AccessKey
secret.
Quick Start
Setup
Install Node.js.
Install the Picovoice Node.js package:
Usage
Create an instance of Picovoice using a
Porcupine keyword file (.ppn
),
and a Rhino context file (.rhn
):
Pass in frames of audio to the .process
function:
Release resources explicitly when done with Picovoice:
Custom Wake Words & Contexts
Create custom wake word and context files using the Picovoice Console. Download the
custom keyword (.ppn
) and context (.rhn
) files and create an instance of Picovoice passing the new models as input.
Non-English Languages
Use the corresponding model files (.pv
) to process non-English languages. The model files for all supported languages
are available on the Porcupine
and Rhino GitHub repositories.
Pass in the Porcupine and Rhino model files to change the language:
Demo
For the Picovoice Node.js SDK, we offer demo applications that demonstrate how to use the End-to-End speech recognition platform on real-time audio streams (i.e. microphone input) and audio files.
Setup
Install the Picovoice demo package:
This package installs command-line utilities for the Picovoice Node.js demos.
Usage
Use the --help
flag to see the usage options for the demo:
Ensure you have a working microphone connected to your system and run the following command to make inferences based on the given keyword and context files:
For more information on our Picovoice demos for Node.js, head over to our GitHub repository.