Can I code Descript?

Transcribing a video and letting you cut it by deleting text is a clever but achievable combination of an existing speech-to-text API and a video editor. Their AI voice-cloning 'Overdub' feature is a different, genuinely hard problem.

VIBE SCORE 77/100

how this is worked out

Why CanICodeThis says Borderline

  • Transcribing uploaded video via an existing speech-to-text API and displaying an editable transcript is a bounded integration
  • Cutting the video wherever text is deleted (mapping transcript timestamps back to video frames) is real but well-documented editing logic
  • Basic export to a standard video format is routine with existing video-processing libraries

Read before building

  • AI voice cloning to generate new speech in your own voice (Overdub) is a genuinely sophisticated, separate ML capability, not an incremental feature
  • Studio-quality audio enhancement (removing background noise, room echo) needs real audio-ML, not a simple filter
  • Multi-track editing with screen recording and webcam layered together adds real video-compositing complexity

Bill of materials

The parts this build actually needs, each rated on its own — the average is the Vibe Score above.

Landing page99
File uploads87
Video processing45

The build spec

Build me a transcript-based video editor: upload a video, transcribe it with an existing speech-to-text API, show an editable text transcript, and let deleting text cut the corresponding video segment. Export the edited result. Use an existing video-processing library for the actual cutting — don't write custom video codec handling. Skip AI voice cloning entirely.

What it actually costs to build

Two real costs, not just "free": the AI agent's own usage, and hosting once it's running. Both are estimated from this app's own effort rating and component list — see the assumptions on the method page.

AI agent — with a subscription (Claude Pro/Max, Cursor, etc.)$0 marginal
AI agent — pay-per-use API, no subscription$43–$86 one-time
Hosting, once it's running$8–$16/mo
Domain name, if you want your own~$12/yr

Descript costs $24/mo. Even paying per-token with no subscription, and accounting for hosting, this build pays for itself in about 11 months.

categoryvideo
time to codea weekend
Borderline
their price$24/mo · $288/yr
last checked2026-08 · source ↗

Questions

Can I code Descript?

Borderline. Transcribing a video and letting you cut it by deleting text is a clever but achievable combination of an existing speech-to-text API and a video editor. Their AI voice-cloning 'Overdub' feature is a different, genuinely hard problem.

How much does Descript cost?

Descript costs $24/mo (about $288/yr) as of 2026-08. That's what a working rebuild would save you.

What do I lose by building it myself?

AI voice cloning to generate new speech in your own voice (Overdub) is a genuinely sophisticated, separate ML capability, not an incremental feature Studio-quality audio enhancement (removing background noise, room echo) needs real audio-ML, not a simple filter Multi-track editing with screen recording and webcam layered together adds real video-compositing complexity