-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathMicDemo.cs
274 lines (253 loc) · 10.6 KB
/
MicDemo.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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
/*
Copyright 2020-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;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Pv;
namespace LeopardDemo
{
/// <summary>
/// Microphone Demo for Leopard Speech-to-Text engine.
/// It creates an input audio stream from a microphone and processes it with Leopard.
/// </summary>
public class MicDemo
{
private static readonly int PV_RECORDER_FRAME_LENGTH = 2048;
/// <summary>
/// Creates an input audio stream and instantiates an instance of Leopard object.
/// </summary>
/// <param name="accessKey">
/// AccessKey obtained from Picovoice Console (https://console.picovoice.ai/).
/// </param>
/// <param name="modelPath">
/// Absolute path to the file containing model parameters.
/// If not set it will be set to the default location.
/// </param>
/// <param name="enableAutomaticPunctuation">
/// Set to `true` to enable automatic punctuation insertion.
/// </param>
/// <param name="enableDiarization">
/// Set to `true` to enable speaker diarization, which allows Leopard to differentiate speakers as
/// part of the transcription process. Word metadata will include a `SpeakerTag` to identify unique speakers.
/// </param>
/// <param name="verbose">Enable verbose logging.</param>
/// <param name="audioDeviceIndex">
/// Optional argument. If provided, audio is recorded from this input device.
/// Otherwise, the default audio input device is used.
/// </param>
private static void RunDemo(
string accessKey,
string modelPath,
bool enableAutomaticPunctuation,
bool enableDiarization,
bool verbose,
int audioDeviceIndex)
{
using (Leopard leopard = Leopard.Create(
accessKey: accessKey,
modelPath: modelPath,
enableAutomaticPunctuation: enableAutomaticPunctuation,
enableDiarization: enableDiarization))
{
using (PvRecorder recorder = PvRecorder.Create(PV_RECORDER_FRAME_LENGTH, audioDeviceIndex))
{
Console.WriteLine($"Using device: {recorder.SelectedDevice}");
Console.CancelKeyPress += delegate (object sender, ConsoleCancelEventArgs e)
{
Console.WriteLine("Stopping...");
};
List<short> audioFrames = new List<short>();
recorder.Start();
Console.WriteLine(">>> Press `CTRL+C` to exit:\n");
while (true)
{
Console.WriteLine(">>> Recording ... Press `ENTER` to stop:");
var tokenSource = new CancellationTokenSource();
CancellationToken token = tokenSource.Token;
Task recordingTask = Task.Run(() =>
{
audioFrames.Clear();
recorder.Start();
while (!token.IsCancellationRequested)
{
short[] frame = recorder.Read();
audioFrames.AddRange(frame);
}
recorder.Stop();
});
string s = Console.ReadLine();
if (s == null)
{
break;
}
tokenSource.Cancel();
recordingTask.Wait();
short[] pcm = audioFrames.ToArray();
Console.WriteLine(">>> Processing ... \n");
try
{
LeopardTranscript result = leopard.Process(pcm);
Console.WriteLine(result.TranscriptString);
if (verbose)
{
Console.WriteLine(
string.Format(
"\n|{0,-15}|{1,11:0.00}|{2,10:0.00}|{3,10:0.00}|{4,11}|\n",
"Word",
"Confidence",
"StartSec",
"EndSec",
"SpeakerTag"));
for (int i = 0; i < result.WordArray.Length; i++)
{
LeopardWord word = result.WordArray[i];
Console.WriteLine(
string.Format(
"|{0,-15}|{1,11:0.00}|{2,10:0.00}|{3,10:0.00}|{4,11}|",
word.Word,
word.Confidence,
word.StartSec,
word.EndSec,
word.SpeakerTag));
}
Console.WriteLine();
}
}
catch (LeopardActivationLimitException)
{
Console.WriteLine($"AccessKey '{accessKey}' has reached its processing limit.");
}
}
}
}
}
/// <summary>
/// Lists available audio input devices.
/// </summary>
private static void ShowAudioDevices()
{
string[] devices = PvRecorder.GetAvailableDevices();
for (int i = 0; i < devices.Length; i++)
{
Console.WriteLine($"index: {i}, device name: {devices[i]}");
}
}
public static void Main(string[] args)
{
AppDomain.CurrentDomain.UnhandledException += OnUnhandledException;
if (args.Length == 0)
{
Console.WriteLine(HELP_STR);
Console.Read();
return;
}
string accessKey = null;
string modelPath = null;
bool enableAutomaticPunctuation = true;
bool enableDiarization = true;
bool verbose = false;
int audioDeviceIndex = -1;
bool showAudioDevices = false;
bool showHelp = false;
// parse command line arguments
int argIndex = 0;
while (argIndex < args.Length)
{
if (args[argIndex] == "--access_key")
{
if (++argIndex < args.Length)
{
accessKey = args[argIndex++];
}
}
else if (args[argIndex] == "--model_path")
{
if (++argIndex < args.Length)
{
modelPath = args[argIndex++];
}
}
else if (args[argIndex] == "--disable_automatic_punctuation")
{
enableAutomaticPunctuation = false;
argIndex++;
}
else if (args[argIndex] == "--disable_speaker_diarization")
{
enableDiarization = false;
argIndex++;
}
else if (args[argIndex] == "--verbose")
{
verbose = true;
argIndex++;
}
else if (args[argIndex] == "--show_audio_devices")
{
showAudioDevices = true;
argIndex++;
}
else if (args[argIndex] == "--audio_device_index")
{
if (++argIndex < args.Length && int.TryParse(args[argIndex], out int deviceIndex))
{
audioDeviceIndex = deviceIndex;
argIndex++;
}
}
else if (args[argIndex] == "-h" || args[argIndex] == "--help")
{
showHelp = true;
argIndex++;
}
else
{
argIndex++;
}
}
// print help text and exit
if (showHelp)
{
Console.WriteLine(HELP_STR);
Console.Read();
return;
}
// print audio device info and exit
if (showAudioDevices)
{
ShowAudioDevices();
Console.Read();
return;
}
// run demo with validated arguments
RunDemo(
accessKey,
modelPath,
enableAutomaticPunctuation,
enableDiarization,
verbose,
audioDeviceIndex);
}
private static void OnUnhandledException(object sender, UnhandledExceptionEventArgs e)
{
Console.WriteLine(e.ExceptionObject.ToString());
Console.Read();
Environment.Exit(1);
}
private static readonly string HELP_STR = "Available options: \n " +
"\t--access_key (required): AccessKey obtained from Picovoice Console (https://console.picovoice.ai/)\n" +
"\t--model_path: Absolute path to the file containing model parameters.\n" +
"\t--audio_device_index: Index of input audio device.\n" +
"\t--show_audio_devices: Print available recording devices.\n" +
"\t--disable_automatic_punctuation: Disable automatic punctuation.\n" +
"\t--disable_speaker_diarization: Disable speaker diarization.\n" +
"\t--verbose: Enable verbose output. Prints Leopard word metadata.";
}
}