-
Notifications
You must be signed in to change notification settings - Fork 499
/
PorcupineManager.cs
160 lines (146 loc) · 7.54 KB
/
PorcupineManager.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
//
// Copyright 2021-2023 Picovoice Inc.
//
// You may not use this file except in compliance with the license. A copy of the license is located in the "LICENSE"
// file accompanying this source.
//
// Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
// an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
// specific language governing permissions and limitations under the License.
//
using System.Collections.Generic;
using System;
using UnityEngine;
namespace Pv.Unity
{
public class PorcupineManager
{
private Porcupine _porcupine;
private Action<int> _wakeWordCallback;
private Action<PorcupineException> _processErrorCallback;
/// <summary>
/// Creates an instance of the Porcupine wake word engine from built-in keywords
/// </summary>
/// <param name="accessKey">AccessKey obtained from Picovoice Console (https://picovoice.ai/console/)</param>
/// <param name="keywords">
/// List of built-in keywords (phrases) to detect. The list of available (default) keywords can be retrieved
/// using `PorcupineManager.BUILT_IN_KEYWORDS`.
/// </param>
/// <param name="wakeWordCallback">A callback that is triggered when one of the given keywords has been detected by Porcupine.</param>
/// <param name="modelPath">(Optional) Absolute path to the file containing model parameters. If not set it will be set to the default location.</param>
/// <param name="sensitivities">
/// (Optional) Sensitivities for detecting keywords. Each value should be a number within [0, 1]. A higher sensitivity results in fewer
/// misses at the cost of increasing the false alarm rate. If not set 0.5 will be used.
/// </param>
/// <param name="processErrorCallback">(Optional) Callback that triggers is the engine experiences a problem while processing audio.</param>
/// <returns>An instance of PorcupineManager.</returns>
public static PorcupineManager FromBuiltInKeywords(string accessKey, IEnumerable<Porcupine.BuiltInKeyword> keywords, Action<int> wakeWordCallback,
string modelPath = null, IEnumerable<float> sensitivities = null, Action<PorcupineException> processErrorCallback = null)
{
Porcupine porcupine = Porcupine.FromBuiltInKeywords(accessKey: accessKey, keywords: keywords, modelPath: modelPath, sensitivities: sensitivities);
return new PorcupineManager(porcupine, wakeWordCallback, processErrorCallback);
}
/// <summary>
/// Creates an instance of the Porcupine wake word engine from custom keyword files.
/// </summary>
/// <param name="accessKey">AccessKey obtained from Picovoice Console (https://picovoice.ai/console/)</param>
/// <param name="keywordPaths">List of absolute paths to keyword model files (.ppn).</param>
/// <param name="wakeWordCallback">A callback that is triggered when one of the given keywords has been detected by Porcupine.</param>
/// <param name="modelPath">(Optional) Absolute path to the file containing model parameters. If not set it will be set to the default location.</param>
/// <param name="sensitivities">
/// (Optional) Sensitivities for detecting keywords. Each value should be a number within [0, 1]. A higher sensitivity results in fewer
/// misses at the cost of increasing the false alarm rate. If not set 0.5 will be used.
/// </param>
/// <param name="processErrorCallback">(Optional) Callback that triggers is the engine experiences a problem while processing audio.</param>
/// <returns>An instance of PorcupineManager.</returns>
public static PorcupineManager FromKeywordPaths(string accessKey, IEnumerable<string> keywordPaths, Action<int> wakeWordCallback,
string modelPath = null, IEnumerable<float> sensitivities = null, Action<PorcupineException> processErrorCallback = null)
{
Porcupine porcupine = Porcupine.FromKeywordPaths(accessKey: accessKey, keywordPaths: keywordPaths, modelPath: modelPath, sensitivities: sensitivities);
return new PorcupineManager(porcupine, wakeWordCallback, processErrorCallback);
}
// private constructor
private PorcupineManager(Porcupine porcupine, Action<int> wakeWordCallback, Action<PorcupineException> processErrorCallback = null)
{
_porcupine = porcupine;
_wakeWordCallback = wakeWordCallback;
_processErrorCallback = processErrorCallback;
}
/// <summary>
/// Action to catch audio frames as voice processor produces them
/// </summary>
/// <param name="frame">Frame of audio</param>
private void OnFrameCaptured(short[] frame)
{
try
{
int keywordIndex = _porcupine.Process(frame);
if (keywordIndex >= 0)
{
if (_wakeWordCallback != null)
_wakeWordCallback.Invoke(keywordIndex);
}
}
catch (Exception ex)
{
if (_processErrorCallback != null)
_processErrorCallback(new PorcupineException(ex.Message));
else
Debug.LogError(ex.ToString());
}
}
/// <summary>
/// Checks to see whether PorcupineManager is capturing audio or not
/// </summary>
/// <returns>whether PorcupineManager is capturing audio or not</returns>
public bool IsRecording => VoiceProcessor.Instance.IsRecording;
/// <summary>
/// Checks to see whether there are any audio capture devices available
/// </summary>
/// <returns>whether there are any audio capture devices available</returns>
public bool IsAudioDeviceAvailable()
{
VoiceProcessor.Instance.UpdateDevices();
return VoiceProcessor.Instance.CurrentDeviceIndex >= 0;
}
/// <summary>
/// Starts audio capture and wake word detection
/// </summary>
public void Start()
{
if (_porcupine == null)
{
throw new ObjectDisposedException("Porcupine", "Cannot start PorcupineManager - resources have already been released");
}
VoiceProcessor.Instance.AddFrameListener(OnFrameCaptured);
VoiceProcessor.Instance.StartRecording(_porcupine.FrameLength, _porcupine.SampleRate);
}
/// <summary>
/// Stops audio capture and wake word detection
/// </summary>
public void Stop()
{
if (_porcupine == null)
{
throw new ObjectDisposedException("Porcupine", "Stop called after PorcupineManager resources were released.");
}
VoiceProcessor.Instance.RemoveFrameListener(OnFrameCaptured);
if (VoiceProcessor.Instance.NumFrameListeners == 0)
{
VoiceProcessor.Instance.StopRecording();
}
}
/// <summary>
/// Free resources that were allocated to Porcupine and the voice processor
/// </summary>
public void Delete()
{
if (_porcupine != null)
{
Stop();
_porcupine.Dispose();
_porcupine = null;
}
}
}
}