Cut short-form clips out of a webinar automatically
Marketing teams running webinars they never repurpose. The clips worth posting are buried somewhere in a 60-minute recording and finding them by scrubbing costs more than the clips are worth.
A ranked list of quotable moments with exact in and out points, ready to cut.
The flow
- TriggerThe webinar recording finishes and lands in storage.
- SubmitSubmit the URL with word_timestamps enabled — clip boundaries need word-level precision, not sentence-level.
- RankScore the transcript for self-contained statements: a claim, a number, a story opening. Each one carries its own timestamps.
- CutFeed the in/out pairs to your editor or ffmpeg.
- PostThe shortlist lands in Slack so a human picks rather than searches.
# submit — returns immediately, does not block curl -X POST https://whipscribe.com/api/v1/transcribe/url \ -H "X-API-Key: $KEY" \ -H "Idempotency-Key: webinar-to-short-form-clips-$SOURCE_ID" \ -H "Content-Type: application/json" \ -d '{"url":"https://example.com/recording.mp4", "diarize":true, "word_timestamps":true}' → 202 {"job_id":"a1b2…","status":"queued"} # then poll — a self-serve (Pro) key collects by polling curl "https://whipscribe.com/api/v1/jobs/$JOB" -H "X-API-Key: $KEY" → {"status":"processing"} … {"status":"done"}
What it costs
A 60-minute webinar is about $0.48 of transcription. The clips it yields are the cheapest content a marketing team produces. $8 per 1,000 minutes — about $0.48 an audio hour — and credits never expire.
Why this needs an API rather than a person
The value is in doing it to every webinar, including the ones nobody would have bothered with.
Build it on
Your first transcript in the web app is free, any length, no card — that is how to check accuracy on your own audio before writing any code. The API itself has no free tier: a key is self-serve once your account has credit ($50 minimum, spendable on transcription, and it does not expire). $8 per 1,000 minutes — about $0.48 an audio hour — and credits never expire.
Transcribe a file free →Create an API keyAPI reference