You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Speaker Recognition Engine supports several commands for managing speaker audio data. Below are the available commands:
29
+
30
+
1. **Enroll a Speaker**: Enroll a new speaker using an audio file.
31
+
2. **Recognize a Speaker**: Identify a speaker from a given audio file.
32
+
3. **List Enrolled Speakers**: Display a list of all enrolled speakers.
33
+
4. **Delete a Speaker**: Remove a speaker's data from the system.
34
+
35
+
Each command can be executed from the command line with the appropriate arguments. The general syntax for using the tool is:
36
+
37
+
```bash
38
+
python cli.py <command> [arguments]
39
+
40
+
### Enroll a Speaker
41
+
42
+
To enroll a new speaker, use the `enroll` command followed by the speaker's name and the path to the audio file. Optionally, you can specify parameters like sample rate, number of filters, and number of MFCC coefficients.
0 commit comments