eggvelop/podmenti-parakeet
Podmenti transcriber: NVIDIA Parakeet TDT 0.6B v3 with Silero VAD chunking and batching, whole episodes of any length, word timestamps.
Run eggvelop/podmenti-parakeet 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
|
Audio file: mp3, m4a, wav, ogg... any length, mono or stereo
|
|
| batch_size |
integer
|
32
Min: 1 Max: 128 |
VAD pieces recognised per GPU batch
|
{
"type": "object",
"title": "Input",
"required": [
"audio"
],
"properties": {
"audio": {
"type": "string",
"title": "Audio",
"format": "uri",
"x-order": 0,
"description": "Audio file: mp3, m4a, wav, ogg... any length, mono or stereo"
},
"batch_size": {
"type": "integer",
"title": "Batch Size",
"default": 32,
"maximum": 128,
"minimum": 1,
"x-order": 1,
"description": "VAD pieces recognised per GPU batch"
}
}
}
Output schema
The shape of the response you’ll get when you run this model with an API.
{
"type": "string",
"title": "Output"
}