-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathFileDemo.cs
210 lines (195 loc) · 7.77 KB
/
FileDemo.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
/*
Copyright 2022-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.IO;
using Pv;
namespace LeopardDemo
{
/// <summary>
/// File Demo for Leopard Speech-to-Text engine.
/// The demo takes an input audio file and processes it with Leopard.
/// </summary>
public class FileDemo
{
/// <summary>
/// Reads through input file and prints the transcription returned by Leopard.
/// </summary>
/// <param name="inputAudioPath">Required argument. Absolute path to input audio file.</param>
/// <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>
public static void RunDemo(
string accessKey,
string inputAudioPath,
string modelPath,
bool enableAutomaticPunctuation,
bool enableDiarization,
bool verbose)
{
// init Leopard speech-to-text engine
using (Leopard leopard = Leopard.Create(
accessKey: accessKey,
modelPath: modelPath,
enableAutomaticPunctuation: enableAutomaticPunctuation,
enableDiarization: enableDiarization))
{
try
{
LeopardTranscript result = leopard.ProcessFile(inputAudioPath);
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));
}
}
}
catch (LeopardActivationLimitException)
{
Console.WriteLine($"AccessKey '{accessKey}' has reached it's processing limit.");
}
}
}
public static void Main(string[] args)
{
AppDomain.CurrentDomain.UnhandledException += OnUnhandledException;
if (args.Length == 0)
{
Console.WriteLine(HELP_STR);
Console.Read();
return;
}
string inputAudioPath = null;
string accessKey = null;
string modelPath = null;
bool enableAutomaticPunctuation = true;
bool enableDiarization = true;
bool verbose = false;
bool showHelp = false;
// parse command line arguments
int argIndex = 0;
while (argIndex < args.Length)
{
if (args[argIndex] == "--input_audio_path")
{
if (++argIndex < args.Length)
{
inputAudioPath = args[argIndex++];
}
}
else 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] == "-h" || args[argIndex] == "--help")
{
showHelp = true;
argIndex++;
}
else
{
argIndex++;
}
}
// print help text and exit
if (showHelp)
{
Console.WriteLine(HELP_STR);
Console.Read();
return;
}
// argument validation
if (string.IsNullOrEmpty(inputAudioPath))
{
throw new ArgumentNullException("input_audio_path");
}
if (!File.Exists(inputAudioPath))
{
throw new ArgumentException(
$"Audio file at path {inputAudioPath} does not exist",
"input_audio_path");
}
RunDemo(
accessKey,
inputAudioPath,
modelPath,
enableAutomaticPunctuation,
enableDiarization,
verbose);
}
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--input_audio_path (required): Absolute path to input audio file.\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--disable_automatic_punctuation: Disable automatic punctuation.\n" +
"\t--disable_speaker_diarization: Disable speaker diarization.\n" +
"\t--verbose: Enable verbose output. Prints Leopard word metadata.";
}
}