Transcribe speech from a video or audio file using AI (Deepgram) and output captions in SRT, VTT, or JSON format.
Timeout: 300s | Provider: triggerdev | Accepts: video, audio
Request
curl -X POST https://api.rendobar.com/jobs \
-H "Authorization: Bearer rb_your_key" \
-H "Content-Type: application/json" \
-d '{
"type": "caption.extract",
"inputs": {
"source": "https://cdn.rendobar.com/assets/examples/sample.mp4"
},
"params": {
"language": "en",
"format": "srt"
}
}'
Parameters
Language code for transcription (BCP-47, e.g. “en”, “es”, “fr”)
format
srt | vtt | json
default:"srt"
Output caption format
Response
{
"data": {
"id": "job_abc123",
"status": "dispatched"
}
}