meetjamie / speaker-diarization-vad-v1
(Updated 1 year, 7 months ago)
- Public
- 117K runs
Run meetjamie/speaker-diarization-vad-v1 with an API
Use one of our client libraries to get started quickly. Clicking on a library will take you to the Playground tab where you can tweak different inputs, see the results, and copy the corresponding code to use in your own project.
Input schema
The fields you can use to run this model with an API. If you don't give a value for a field its default value will be used.
Field | Type | Default value | Description |
---|---|---|---|
audio |
string
|
Path to audio file stored in bytes
|
|
audioChunkIndex |
integer
|
Index of the audio chunk in the audio file
|
|
audioChunkStartTime |
integer
|
Start time of the audio chunk in the audio file in timestamp in milliseconds
|
{
"type": "object",
"title": "Input",
"required": [
"audio",
"audioChunkIndex",
"audioChunkStartTime"
],
"properties": {
"audio": {
"type": "string",
"title": "Audio",
"format": "uri",
"x-order": 0,
"description": "Path to audio file stored in bytes"
},
"audioChunkIndex": {
"type": "integer",
"title": "Audiochunkindex",
"x-order": 1,
"description": "Index of the audio chunk in the audio file"
},
"audioChunkStartTime": {
"type": "integer",
"title": "Audiochunkstarttime",
"x-order": 2,
"description": "Start time of the audio chunk in the audio file in timestamp in milliseconds"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
Schema
{
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"title": "Output"
}