Picovoice Platform
Web Quick Start
Platforms
- Chrome & Chromium-based browsers
- Edge
- Firefox
- Safari
Requirements
- Picovoice Account and AccessKey
- Node.js 16+
- npm
Picovoice Account & AccessKey
Signup or Login to Picovoice Console to obtain your AccessKey
.
Make sure to keep your AccessKey
secret.
Quick Start
Setup
Install Node.js.
Install the web-voice-processor and picovoice-web packages:
Usage
To initialize Picovoice
you'll need a
Porcupine keyword file (.ppn
)
and model file (.pv
), as well as a
Rhino context file (.rhn
)
and model file (.pv
). Place these files in the project's
public directory or generate a base64 representation of the file using the built-in script:
Create a PicovoiceWorker
instance using public directory initialization files:
Subscribe the engine to the Web Voice Processor to start audio processing:
Unsubscribe from Web Voice Processor to stop audio processing:
Release resources explicitly when done with Picovoice:
Custom Wake Words & Contexts
Create custom keywords and contexts using the Picovoice Console.
Train a Porcupine keyword to obtain a keyword file (.ppn
) and a Rhino context to obtain a context file (.rhn
).
To use them with the Web SDK, train the keywords and contexts for the target platform Web (WASM)
.
These model files can be used directly with publicPath
, but, if base64
is preferable, convert to base64
JavaScript variable using the built-in pvbase64
script:
Similar to the model file (.pv
), these files are saved in IndexedDB to be used by Web Assembly.
Either base64
or publicPath
must be set for each file to initialize Picovoice. If both are set, Picovoice will use
the base64
model.
Non-English Languages
In order to use Picovoice with different languages you need to use the corresponding model file (.pv
) for the desired
language. The model files for all
supported languages are available in the Porcupine
and Rhino GitHub repositories.
Demo
For the Picovoice Web SDK, there is a Web demo project available on the Picovoice GitHub repository.
Setup
Clone the Picovoice repository from GitHub:
Usage
- Install the dependencies and use the
start
script with a language code to start the demo in the language of your choice (e.g.de
-> German,ko
-> Korean). To see a list of available languages, runstart
without a language code.
- Open http://localhost:5000 to view it in the browser.