Picovoice 1.1.0
See the version list below for details.
dotnet add package Picovoice --version 1.1.0
NuGet\Install-Package Picovoice -Version 1.1.0
<PackageReference Include="Picovoice" Version="1.1.0" />
paket add Picovoice --version 1.1.0
#r "nuget: Picovoice, 1.1.0"
// Install Picovoice as a Cake Addin #addin nuget:?package=Picovoice&version=1.1.0 // Install Picovoice as a Cake Tool #tool nuget:?package=Picovoice&version=1.1.0
Picovoice
Made in Vancouver, Canada by Picovoice
Picovoice is an end-to-end platform for building voice products on your terms. It enables creating voice experiences similar to Alexa and Google. But it entirely runs 100% on-device. Picovoice is
- Private: Everything is processed offline. Intrinsically HIPAA and GDPR compliant.
- Reliable: Runs without needing constant connectivity.
- Zero Latency: Edge-first architecture eliminates unpredictable network delay.
- Accurate: Resilient to noise and reverberation. It outperforms cloud-based alternatives by wide margins *.
- Cross-Platform: Design once, deploy anywhere. Build using familiar languages and frameworks.
Compatibility
- .NET Standard 2.0, .NET Core 2.0+, .NET Framework 4.6.1+
- Runs on Linux (x86_64), macOS (x86_64) and Windows (x86_64)
Installation
You can install the latest version of Picovoice by adding the latest Picovoice Nuget package in Visual Studio or using the .NET CLI.
dotnet add package Picovoice
Usage
Create an instance of the engine
using Pv;
string keywordPath = "/absolute/path/to/keyword.ppn";
void wakeWordCallback() => {..}
string contextPath = "/absolute/path/to/context.rhn";
void inferenceCallback(Inference inference)
{
// `inference` exposes three immutable properties:
// (1) `IsUnderstood`
// (2) `Intent`
// (3) `Slots`
// ..
}
Picovoice handle = new Picovoice(keywordPath,
wakeWordCallback,
contextPath,
inferenceCallback);
handle
is an instance of Picovoice runtime engine that detects utterances of wake phrase defined in the file located at
keywordPath
. Upon detection of wake word it starts inferring user's intent from the follow-on voice command within
the context defined by the file located at contextPath
. keywordPath
is the absolute path to
Porcupine wake word engine keyword file (with .ppn
suffix).
contextPath
is the absolute path to Rhino Speech-to-Intent engine context file
(with .rhn
suffix). wakeWordCallback
is invoked upon the detection of wake phrase and inferenceCallback
is
invoked upon completion of follow-on voice command inference.
When instantiated, valid sample rate can be obtained via handle.SampleRate
. Expected number of audio samples per
frame is handle.FrameLength
. The engine accepts 16-bit linearly-encoded PCM and operates on single-channel audio.
short[] GetNextAudioFrame()
{
// .. get audioFrame
return audioFrame;
}
while(true)
{
handle.Process(GetNextAudioFrame());
}
Picovoice will have its resources freed by the garbage collector, but to have resources freed immediately after use, wrap it in a using statement:
using(Picovoice handle = new Picovoice(keywordPath, wakeWordCallback, contextPath, inferenceCallback))
{
// .. Picovoice usage here
}
Demos
The Picovoice dotnet demo is a .NET Core command line application that allows for processing real-time audio (i.e. microphone) and files using Picovoice.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated | |
---|---|---|---|
3.0.4 | 151 | 9/18/2024 | |
3.0.3 | 118 | 9/4/2024 | |
3.0.2 | 393 | 1/31/2024 | |
3.0.1 | 344 | 11/17/2023 | |
3.0.0 | 217 | 10/25/2023 | |
2.2.2 | 271 | 8/25/2023 | |
2.1.6 | 507 | 11/16/2022 | |
2.1.5 | 549 | 6/29/2022 | |
2.1.4 | 492 | 6/13/2022 | |
2.1.3 | 524 | 5/16/2022 | |
2.1.2 | 514 | 3/11/2022 | |
2.1.1 | 587 | 2/4/2022 | |
2.1.0 | 509 | 1/19/2022 | |
2.0.2 | 409 | 11/30/2021 | |
1.1.2 | 447 | 9/7/2021 | |
1.1.1 | 519 | 5/12/2021 | |
1.1.0 | 580 | 12/2/2020 | |
1.0.0 | 509 | 10/22/2020 |