Exports a speaker database so that you can use it with another Media Server.
Type: synchronous
| Parameter | Description | Required |
|---|---|---|
database
|
The name of the database to export. | Yes |
exportdata
|
A Boolean value (default false) that specifies whether to export data, such as the audio clips used for training, in addition to the speaker models. | No |
The following example uses cURL to export a speaker database and write it to the file speakers.dat.
curl http://localhost:14000 -F action=ExportSpeakerDatabase
-F database=news
-F exportdata=true
-o speakers.dat
The response contains the binary data for the speaker database.
|
|