What this skill does
Convert extracted audio into timestamped transcripts during Opal jobs.
Version 1.0.0
SKILL.md
Convert extracted audio into a timestamped transcript during an Opal Job.
Transcription is an internal job phase.
POST /api/upload
GET /api/jobs/:jobId
GET /api/jobs/:jobId/transcript
POST /api/jobs/:jobId/cancel
{
"jobId": "string",
"audioPath": "string"
}
{
"jobId": "string",
"transcript": {
"fullText": "string",
"segments": [
{
"start": 0,
"end": 0,
"text": "string"
}
]
}
}
WHISPER_MODEL.Use faster-whisper. Preserve timestamps. Do not summarize. Do not remove important speech. Support cancellation of the active transcription process.