-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy patheagle_demo_file.c
779 lines (618 loc) · 26.5 KB
/
eagle_demo_file.c
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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
/*
Copyright 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.
*/
#include <getopt.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/time.h>
#if defined(_WIN32) || defined(_WIN64)
#include <windows.h>
#define UTF8_COMPOSITION_FLAG (0)
#define NULL_TERMINATED (-1)
#else
#include <dlfcn.h>
#endif
#define DR_WAV_IMPLEMENTATION
#include "dr_wav.h"
#include "pv_eagle.h"
static void *open_dl(const char *dl_path) {
#if defined(_WIN32) || defined(_WIN64)
return LoadLibrary(dl_path);
#else
return dlopen(dl_path, RTLD_NOW);
#endif
}
static void *load_symbol(void *handle, const char *symbol) {
#if defined(_WIN32) || defined(_WIN64)
return GetProcAddress((HMODULE) handle, symbol);
#else
return dlsym(handle, symbol);
#endif
}
static void close_dl(void *handle) {
#if defined(_WIN32) || defined(_WIN64)
FreeLibrary((HMODULE) handle);
#else
dlclose(handle);
#endif
}
static void print_dl_error(const char *message) {
#if defined(_WIN32) || defined(_WIN64)
fprintf(stderr, "%s with code '%lu'.\n", message, GetLastError());
#else
fprintf(stderr, "%s with '%s'.\n", message, dlerror());
#endif
}
static struct option long_options[] = {
{"access_key", required_argument, NULL, 'a'},
{"library_path", required_argument, NULL, 'l'},
{"model_path", required_argument, NULL, 'm'},
{"enroll", required_argument, NULL, 'e'},
{"test", required_argument, NULL, 't'},
};
pv_status_t (*pv_get_error_stack_func)(char ***, int32_t *) = NULL;
void (*pv_free_error_stack_func)(char **) = NULL;
static void print_usage(const char *program_name) {
fprintf(stdout,
"Usage: %s [-e OUTPUT_PROFILE_PATH | -t INPUT_PROFILE_PATH] [-l LIBRARY_PATH -m MODEL_PATH -a ACCESS_KEY WAV_AUDIO_PATH_1 WAV_AUDIO_PATH_2 ...]\n",
program_name);
}
static void print_error_message(char **message_stack, int32_t message_stack_depth) {
for (int32_t i = 0; i < message_stack_depth; i++) {
fprintf(stderr, " [%d] %s\n", i, message_stack[i]);
}
}
void speaker_enrollment(
const char *access_key,
const char *model_path,
void *eagle_library,
const char *output_profile_path,
int32_t num_audio_paths,
const char *audio_paths[]) {
const char *(*pv_status_to_string_func)(pv_status_t) = load_symbol(eagle_library, "pv_status_to_string");
if (!pv_status_to_string_func) {
print_dl_error("Failed to load 'pv_status_to_string'");
exit(EXIT_FAILURE);
}
pv_status_t (*pv_eagle_profiler_init_func)(
const char *,
const char *,
pv_eagle_profiler_t **) = load_symbol(eagle_library, "pv_eagle_profiler_init");
if (!pv_eagle_profiler_init_func) {
print_dl_error("Failed to load 'pv_eagle_profiler_init'");
exit(EXIT_FAILURE);
}
void (*pv_eagle_profiler_delete_func)(pv_eagle_profiler_t *)
= load_symbol(eagle_library, "pv_eagle_profiler_delete");
if (!pv_eagle_profiler_delete_func) {
print_dl_error("Failed to load 'pv_eagle_profiler_delete'");
exit(EXIT_FAILURE);
}
const char *(*pv_eagle_profiler_enroll_feedback_to_string_func)(pv_eagle_profiler_enroll_feedback_t)
= load_symbol(eagle_library, "pv_eagle_profiler_enroll_feedback_to_string");
if (!pv_eagle_profiler_enroll_feedback_to_string_func) {
print_dl_error("Failed to load 'pv_eagle_profiler_enroll_feedback_to_string'");
exit(EXIT_FAILURE);
}
pv_status_t (*pv_eagle_profiler_enroll_func)(
pv_eagle_profiler_t *,
const int16_t *,
int32_t,
pv_eagle_profiler_enroll_feedback_t *,
float *) = load_symbol(eagle_library, "pv_eagle_profiler_enroll");
if (!pv_eagle_profiler_enroll_func) {
print_dl_error("Failed to load 'pv_eagle_profiler_enroll'");
exit(EXIT_FAILURE);
}
pv_status_t (*pv_eagle_profiler_enroll_min_audio_length_samples_func)(const pv_eagle_profiler_t *, int32_t *)
= load_symbol(eagle_library, "pv_eagle_profiler_enroll_min_audio_length_samples");
if (!pv_eagle_profiler_enroll_min_audio_length_samples_func) {
print_dl_error("Failed to load 'pv_eagle_profiler_enroll_min_audio_length_samples'");
exit(EXIT_FAILURE);
}
pv_status_t (*pv_eagle_profiler_export_func)(
const pv_eagle_profiler_t *,
void *) = load_symbol(eagle_library, "pv_eagle_profiler_export");
if (!pv_eagle_profiler_export_func) {
print_dl_error("Failed to load 'pv_eagle_profiler_export'");
exit(EXIT_FAILURE);
}
pv_status_t (*pv_eagle_profiler_export_size_func)(
const pv_eagle_profiler_t *,
int32_t *) = load_symbol(eagle_library, "pv_eagle_profiler_export_size");
if (!pv_eagle_profiler_export_size_func) {
print_dl_error("Failed to load 'pv_eagle_profiler_export_size'");
exit(EXIT_FAILURE);
}
pv_status_t (*pv_eagle_profiler_reset_func)(
pv_eagle_profiler_t *) = load_symbol(eagle_library, "pv_eagle_profiler_reset");
if (!pv_eagle_profiler_reset_func) {
print_dl_error("Failed to load 'pv_eagle_profiler_reset'");
exit(EXIT_FAILURE);
}
int32_t (*pv_sample_rate_func)() = load_symbol(eagle_library, "pv_sample_rate");
if (!pv_sample_rate_func) {
print_dl_error("Failed to load 'pv_sample_rate'");
exit(EXIT_FAILURE);
}
char **message_stack = NULL;
int32_t message_stack_depth = 0;
pv_status_t error_status = PV_STATUS_RUNTIME_ERROR;
pv_eagle_profiler_t *eagle_profiler = NULL;
pv_status_t eagle_profiler_status = pv_eagle_profiler_init_func(
access_key,
model_path,
&eagle_profiler);
if (eagle_profiler_status != PV_STATUS_SUCCESS) {
fprintf(stderr, "Failed to create an instance of eagle profiler");
error_status = pv_get_error_stack_func(&message_stack, &message_stack_depth);
if (error_status != PV_STATUS_SUCCESS) {
fprintf(
stderr,
".\nUnable to get Eagle error state with '%s'.\n",
pv_status_to_string_func(error_status));
exit(EXIT_FAILURE);
}
if (message_stack_depth > 0) {
fprintf(stderr, ":\n");
print_error_message(message_stack, message_stack_depth);
pv_free_error_stack_func(message_stack);
}
exit(EXIT_FAILURE);
}
double total_cpu_time_usec = 0;
double total_processed_time_usec = 0;
float enroll_percentage = 0.0f;
for (int32_t i = 0; i < num_audio_paths; i++) {
const char *wav_audio_path = audio_paths[i];
drwav wav_audio_file;
#if defined(_WIN32) || defined(_WIN64)
int wav_audio_path_wchars_num = MultiByteToWideChar(CP_UTF8, UTF8_COMPOSITION_FLAG, wav_audio_path, NULL_TERMINATED, NULL, 0);
wchar_t wav_audio_path_wchars[wav_audio_path_wchars_num];
MultiByteToWideChar(CP_UTF8, UTF8_COMPOSITION_FLAG, wav_audio_path, NULL_TERMINATED, wav_audio_path_wchars, wav_audio_path_wchars_num);
int drwav_init_file_status = drwav_init_file_w(&wav_audio_file, wav_audio_path_wchars, NULL);
#else
int drwav_init_file_status = drwav_init_file(&wav_audio_file, wav_audio_path, NULL);
#endif
if (!drwav_init_file_status) {
fprintf(stderr, "Failed to open wav file at '%s'.", wav_audio_path);
exit(EXIT_FAILURE);
}
if (wav_audio_file.sampleRate != (uint32_t) pv_sample_rate_func()) {
fprintf(stderr, "audio sample rate should be %d\n.", pv_sample_rate_func());
exit(EXIT_FAILURE);
}
if (wav_audio_file.bitsPerSample != 16) {
fprintf(stderr, "audio format should be 16-bit\n.");
exit(EXIT_FAILURE);
}
if (wav_audio_file.channels != 1) {
fprintf(stderr, "audio should be single-channel.\n");
exit(EXIT_FAILURE);
}
size_t num_enroll_samples = wav_audio_file.totalPCMFrameCount;
int16_t *enroll_pcm = calloc(num_enroll_samples, sizeof(int16_t));
if (!enroll_pcm) {
fprintf(stderr, "Failed to allocate memory for enrollment audio.\n");
exit(EXIT_FAILURE);
}
drwav_read_pcm_frames_s16(&wav_audio_file, num_enroll_samples, enroll_pcm);
drwav_uninit(&wav_audio_file);
struct timeval before;
gettimeofday(&before, NULL);
pv_eagle_profiler_enroll_feedback_t feedback = PV_EAGLE_PROFILER_ENROLL_FEEDBACK_AUDIO_OK;
eagle_profiler_status = pv_eagle_profiler_enroll_func(
eagle_profiler,
enroll_pcm,
(int32_t) num_enroll_samples,
&feedback,
&enroll_percentage);
if (eagle_profiler_status != PV_STATUS_SUCCESS) {
fprintf(stderr, "Failed to enroll audio: %s", pv_status_to_string_func(eagle_profiler_status));
error_status = pv_get_error_stack_func(&message_stack, &message_stack_depth);
if (error_status != PV_STATUS_SUCCESS) {
fprintf(
stderr,
".\nUnable to get Eagle error state with '%s'.\n",
pv_status_to_string_func(error_status));
exit(EXIT_FAILURE);
}
if (message_stack_depth > 0) {
fprintf(stderr, ":\n");
print_error_message(message_stack, message_stack_depth);
pv_free_error_stack_func(message_stack);
}
exit(EXIT_FAILURE);
}
struct timeval after;
gettimeofday(&after, NULL);
total_cpu_time_usec += (double) (after.tv_sec - before.tv_sec) * 1e6 +
(double) (after.tv_usec - before.tv_usec);
total_processed_time_usec +=
((double) num_enroll_samples * 1e6) / pv_sample_rate_func();
fprintf(stdout, "Enrolled audio file %s [Enrollment percentage: %.2f%% - Enrollment feedback: %s]\n",
wav_audio_path,
enroll_percentage,
pv_eagle_profiler_enroll_feedback_to_string_func(feedback));
free(enroll_pcm);
}
if (enroll_percentage < 100.0f) {
fprintf(stderr, "Failed to create speaker profile. Insufficient enrollment percentage: %.2f%%. Please add more audio files for enrollment.\n", enroll_percentage);
exit(EXIT_FAILURE);
}
const double real_time_factor =
total_cpu_time_usec / total_processed_time_usec;
fprintf(stdout, "real time factor : %.3f\n\n", real_time_factor);
int32_t profile_size_bytes = 0;
eagle_profiler_status = pv_eagle_profiler_export_size_func(eagle_profiler, &profile_size_bytes);
if (eagle_profiler_status != PV_STATUS_SUCCESS) {
(void) fprintf(stderr, "Failed to get profile size with `%s`",
pv_status_to_string_func(eagle_profiler_status));
error_status = pv_get_error_stack_func(&message_stack, &message_stack_depth);
if (error_status != PV_STATUS_SUCCESS) {
fprintf(
stderr,
".\nUnable to get Eagle error state with '%s'.\n",
pv_status_to_string_func(error_status));
exit(EXIT_FAILURE);
}
if (message_stack_depth > 0) {
fprintf(stderr, ":\n");
print_error_message(message_stack, message_stack_depth);
pv_free_error_stack_func(message_stack);
}
exit(EXIT_FAILURE);
}
void *speaker_profile = calloc(profile_size_bytes, sizeof(uint8_t));
if (!speaker_profile) {
(void) fprintf(stderr, "Failed to allocate memory for profile");
exit(EXIT_FAILURE);
}
eagle_profiler_status = pv_eagle_profiler_export_func(
eagle_profiler,
speaker_profile);
if (eagle_profiler_status != PV_STATUS_SUCCESS) {
(void) fprintf(stderr, "Failed to export profile with `%s`",
pv_status_to_string_func(eagle_profiler_status));
error_status = pv_get_error_stack_func(&message_stack, &message_stack_depth);
if (error_status != PV_STATUS_SUCCESS) {
fprintf(
stderr,
".\nUnable to get Eagle error state with '%s'.\n",
pv_status_to_string_func(error_status));
exit(EXIT_FAILURE);
}
if (message_stack_depth > 0) {
fprintf(stderr, ":\n");
print_error_message(message_stack, message_stack_depth);
pv_free_error_stack_func(message_stack);
}
exit(EXIT_FAILURE);
}
pv_eagle_profiler_delete_func(eagle_profiler);
FILE *output_profile_file = NULL;
#if defined(_WIN32) || defined(_WIN64)
int output_profile_path_wchars_num = MultiByteToWideChar(CP_UTF8, UTF8_COMPOSITION_FLAG, output_profile_path, NULL_TERMINATED, NULL, 0);
wchar_t output_profile_path_wchars[output_profile_path_wchars_num];
MultiByteToWideChar(CP_UTF8, UTF8_COMPOSITION_FLAG, output_profile_path, NULL_TERMINATED, output_profile_path_wchars, output_profile_path_wchars_num);
output_profile_file = _wfopen(output_profile_path_wchars, L"wb");
#else
output_profile_file = fopen(output_profile_path, "wb");
#endif
if (!output_profile_file) {
fprintf(stderr, "Failed to open '%s' for writing\n", output_profile_path);
exit(EXIT_FAILURE);
}
fwrite(speaker_profile, profile_size_bytes, sizeof(uint8_t), output_profile_file);
fprintf(stdout, "Speaker profile is written to '%s'\n", output_profile_path);
free(speaker_profile);
fclose(output_profile_file);
}
void speaker_recognition(
const char *access_key,
const char *model_path,
void *eagle_library,
const char *input_profile_path,
int32_t num_audio_paths,
const char *audio_paths[]) {
const char *(*pv_status_to_string_func)(pv_status_t) = load_symbol(eagle_library, "pv_status_to_string");
if (!pv_status_to_string_func) {
print_dl_error("Failed to load 'pv_status_to_string'");
exit(EXIT_FAILURE);
}
pv_status_t (*pv_eagle_init_func)(
const char *,
const char *,
int32_t,
const void *const *,
pv_eagle_t **) = load_symbol(eagle_library, "pv_eagle_init");
if (!pv_eagle_init_func) {
print_dl_error("Failed to load 'pv_eagle_init'");
exit(EXIT_FAILURE);
}
void (*pv_eagle_delete_func)(pv_eagle_t *) = load_symbol(eagle_library, "pv_eagle_delete");
if (!pv_eagle_delete_func) {
print_dl_error("Failed to load 'pv_eagle_delete'");
exit(EXIT_FAILURE);
}
pv_status_t (*pv_eagle_process_func)(
pv_eagle_t *,
const int16_t *,
float *) = load_symbol(eagle_library, "pv_eagle_process");
if (!pv_eagle_process_func) {
print_dl_error("Failed to load 'pv_eagle_process'");
exit(EXIT_FAILURE);
}
int32_t (*pv_eagle_reset_func)(pv_eagle_t *)
= load_symbol(eagle_library, "pv_eagle_reset");
if (!pv_eagle_reset_func) {
print_dl_error("Failed to load 'pv_eagle_reset'");
exit(EXIT_FAILURE);
}
int32_t (*pv_sample_rate_func)() = load_symbol(eagle_library, "pv_sample_rate");
if (!pv_sample_rate_func) {
print_dl_error("Failed to load 'pv_sample_rate'");
exit(EXIT_FAILURE);
}
int32_t (*pv_eagle_frame_length_func)() = load_symbol(eagle_library, "pv_eagle_frame_length");
if (!pv_eagle_frame_length_func) {
print_dl_error("Failed to load 'pv_eagle_frame_length'");
exit(EXIT_FAILURE);
}
FILE *input_profile_file = NULL;
#if defined(_WIN32) || defined(_WIN64)
int input_profile_path_wchars_num = MultiByteToWideChar(CP_UTF8, UTF8_COMPOSITION_FLAG, input_profile_path, NULL_TERMINATED, NULL, 0);
wchar_t input_profile_path_wchars[input_profile_path_wchars_num];
MultiByteToWideChar(CP_UTF8, UTF8_COMPOSITION_FLAG, input_profile_path, NULL_TERMINATED, input_profile_path_wchars, input_profile_path_wchars_num);
input_profile_file = _wfopen(input_profile_path_wchars, L"rb");
#else
input_profile_file = fopen(input_profile_path, "rb");
#endif
if (!input_profile_file) {
fprintf(stderr, "Failed to open speaker profile file at '%s'.\n", input_profile_path);
exit(EXIT_FAILURE);
}
fseek(input_profile_file, 0, SEEK_END);
long speaker_profile_size = ftell(input_profile_file);
rewind(input_profile_file);
void *speaker_profile = calloc(speaker_profile_size, sizeof(uint8_t));
size_t num_bytes = fread(speaker_profile, sizeof(uint8_t), speaker_profile_size, input_profile_file);
fclose(input_profile_file);
if (num_bytes != speaker_profile_size) {
fprintf(stderr, "Failed to read speaker profile from '%s'.\n", input_profile_path);
exit(EXIT_FAILURE);
}
char **message_stack = NULL;
int32_t message_stack_depth = 0;
pv_status_t error_status = PV_STATUS_RUNTIME_ERROR;
pv_eagle_t *eagle = NULL;
pv_status_t eagle_status = pv_eagle_init_func(
access_key,
model_path,
1,
(const void *const *) &speaker_profile,
&eagle);
if (eagle_status != PV_STATUS_SUCCESS) {
fprintf(stderr, "Failed to create an instance of eagle with '%s'", pv_status_to_string_func(eagle_status));
error_status = pv_get_error_stack_func(&message_stack, &message_stack_depth);
if (error_status != PV_STATUS_SUCCESS) {
fprintf(
stderr,
".\nUnable to get Eagle error state with '%s'.\n",
pv_status_to_string_func(error_status));
exit(EXIT_FAILURE);
}
if (message_stack_depth > 0) {
fprintf(stderr, ":\n");
print_error_message(message_stack, message_stack_depth);
pv_free_error_stack_func(message_stack);
}
exit(EXIT_FAILURE);
}
int16_t *pcm = calloc(pv_eagle_frame_length_func(), sizeof(int16_t));
if (!pcm) {
fprintf(stderr, "Failed to allocate pcm memory.\n");
exit(EXIT_FAILURE);
}
double total_cpu_time_usec = 0;
double total_processed_time_usec = 0;
for (int32_t i = 0; i < num_audio_paths; i++) {
const char *wav_audio_path = audio_paths[i];
drwav wav_audio_file;
#if defined(_WIN32) || defined(_WIN64)
int wav_audio_path_wchars_num = MultiByteToWideChar(CP_UTF8, UTF8_COMPOSITION_FLAG, wav_audio_path, NULL_TERMINATED, NULL, 0);
wchar_t wav_audio_path_wchars[wav_audio_path_wchars_num];
MultiByteToWideChar(CP_UTF8, UTF8_COMPOSITION_FLAG, wav_audio_path, NULL_TERMINATED, wav_audio_path_wchars, wav_audio_path_wchars_num);
int drwav_init_file_status = drwav_init_file_w(&wav_audio_file, wav_audio_path_wchars, NULL);
#else
int drwav_init_file_status = drwav_init_file(&wav_audio_file, wav_audio_path, NULL);
#endif
if (!drwav_init_file_status) {
fprintf(stderr, "Failed to open wav file at '%s'.", wav_audio_path);
exit(EXIT_FAILURE);
}
if (wav_audio_file.sampleRate != (uint32_t) pv_sample_rate_func()) {
fprintf(stderr, "audio sample rate should be %d\n.", pv_sample_rate_func());
exit(EXIT_FAILURE);
}
if (wav_audio_file.bitsPerSample != 16) {
fprintf(stderr, "audio format should be 16-bit\n.");
exit(EXIT_FAILURE);
}
if (wav_audio_file.channels != 1) {
fprintf(stderr, "audio should be single-channel.\n");
exit(EXIT_FAILURE);
}
fprintf(stdout, "audio file: %s\n", wav_audio_path);
while ((int32_t) drwav_read_pcm_frames_s16(&wav_audio_file, pv_eagle_frame_length_func(), pcm) ==
pv_eagle_frame_length_func()) {
struct timeval before;
gettimeofday(&before, NULL);
float score = 0.f;
eagle_status = pv_eagle_process_func(eagle, pcm, &score);
if (eagle_status != PV_STATUS_SUCCESS) {
fprintf(stderr, "Failed to process audio with '%s'", pv_status_to_string_func(eagle_status));
error_status = pv_get_error_stack_func(&message_stack, &message_stack_depth);
if (error_status != PV_STATUS_SUCCESS) {
fprintf(
stderr,
".\nUnable to get Eagle error state with '%s'.\n",
pv_status_to_string_func(error_status));
exit(EXIT_FAILURE);
}
if (message_stack_depth > 0) {
fprintf(stderr, ":\n");
print_error_message(message_stack, message_stack_depth);
pv_free_error_stack_func(message_stack);
}
exit(EXIT_FAILURE);
}
fprintf(stdout, "score: %.2f\n", score);
struct timeval after;
gettimeofday(&after, NULL);
total_cpu_time_usec += (double) (after.tv_sec - before.tv_sec) * 1e6 +
(double) (after.tv_usec - before.tv_usec);
total_processed_time_usec +=
(pv_eagle_frame_length_func() * 1e6) / pv_sample_rate_func();
}
drwav_uninit(&wav_audio_file);
}
const double real_time_factor =
total_cpu_time_usec / total_processed_time_usec;
fprintf(stdout, "real time factor : %.3f\n", real_time_factor);
fprintf(stdout, "\n");
free(pcm);
pv_eagle_delete_func(eagle);
}
int picovoice_main(int argc, char *argv[]) {
const char *access_key = NULL;
const char *library_path = NULL;
const char *model_path = NULL;
const char *input_profile_path = NULL;
const char *output_profile_path = NULL;
int c;
while ((c = getopt_long(argc, argv, "a:l:m:e:t:", long_options, NULL)) != -1) {
switch (c) {
case 'l':
library_path = optarg;
break;
case 'm':
model_path = optarg;
break;
case 'a':
access_key = optarg;
break;
case 'e':
output_profile_path = optarg;
break;
case 't':
input_profile_path = optarg;
break;
default:
exit(EXIT_FAILURE);
}
}
if (!library_path || !access_key || !model_path) {
print_usage(argv[0]);
exit(EXIT_FAILURE);
}
if (input_profile_path && output_profile_path) {
fprintf(stderr, "Please run the demo in either enrollment or test mode\n");
print_usage(argv[0]);
exit(EXIT_FAILURE);
}
if (!input_profile_path && !output_profile_path) {
fprintf(stderr, "Please specify either enrollment or test mode\n");
print_usage(argv[0]);
exit(EXIT_FAILURE);
}
int32_t num_audio_paths = argc - optind;
if (num_audio_paths < 1) {
fprintf(stderr, "Please provide at least one audio file.\n");
print_usage(argv[0]);
exit(EXIT_FAILURE);
}
void *eagle_library = open_dl(library_path);
if (!eagle_library) {
fprintf(stderr, "Failed to open library at '%s'.\n", library_path);
exit(EXIT_FAILURE);
}
int32_t (*pv_sample_rate_func)() = load_symbol(eagle_library, "pv_sample_rate");
if (!pv_sample_rate_func) {
print_dl_error("Failed to load 'pv_sample_rate'");
exit(EXIT_FAILURE);
}
int32_t (*pv_eagle_frame_length_func)() = load_symbol(eagle_library, "pv_eagle_frame_length");
if (!pv_eagle_frame_length_func) {
print_dl_error("Failed to load 'pv_eagle_frame_length'");
exit(EXIT_FAILURE);
}
char *(*pv_eagle_version_func)() = load_symbol(eagle_library, "pv_eagle_version");
if (!pv_eagle_version_func) {
print_dl_error("Failed to load 'pv_eagle_version'");
exit(EXIT_FAILURE);
}
pv_get_error_stack_func = load_symbol(eagle_library, "pv_get_error_stack");
if (!pv_get_error_stack_func) {
print_dl_error("Failed to load 'pv_get_error_stack'");
exit(EXIT_FAILURE);
}
pv_free_error_stack_func = load_symbol(eagle_library, "pv_free_error_stack");
if (!pv_free_error_stack_func) {
print_dl_error("Failed to load 'pv_free_error_stack'");
exit(EXIT_FAILURE);
}
fprintf(stdout, "v%s\n\n", pv_eagle_version_func());
if (output_profile_path) {
speaker_enrollment(
access_key,
model_path,
eagle_library,
output_profile_path,
num_audio_paths,
(const char **) &argv[optind]);
} else {
speaker_recognition(
access_key,
model_path,
eagle_library,
input_profile_path,
num_audio_paths,
(const char **) &argv[optind]);
}
close_dl(eagle_library);
return EXIT_SUCCESS;
}
int main(int argc, char *argv[]) {
#if defined(_WIN32) || defined(_WIN64)
LPWSTR *wargv = CommandLineToArgvW(GetCommandLineW(), &argc);
if (wargv == NULL) {
fprintf(stderr, "CommandLineToArgvW Failed\n");
exit(EXIT_FAILURE);
}
char *utf8_argv[argc];
for (int i = 0; i < argc; ++i) {
// WideCharToMultiByte: https://docs.microsoft.com/en-us/windows/win32/api/stringapiset/nf-stringapiset-widechartomultibyte
int arg_chars_num = WideCharToMultiByte(CP_UTF8, UTF8_COMPOSITION_FLAG, wargv[i], NULL_TERMINATED, NULL, 0, NULL, NULL);
utf8_argv[i] = (char *) malloc(arg_chars_num * sizeof(char));
if (!utf8_argv[i]) {
fprintf(stderr, "Failed to to allocate memory for converting args");
}
WideCharToMultiByte(CP_UTF8, UTF8_COMPOSITION_FLAG, wargv[i], NULL_TERMINATED, utf8_argv[i], arg_chars_num, NULL, NULL);
}
LocalFree(wargv);
argv = utf8_argv;
#endif
int result = picovoice_main(argc, argv);
#if defined(_WIN32) || defined(_WIN64)
for (int i = 0; i < argc; ++i) {
free(utf8_argv[i]);
}
#endif
return result;
}