How to build an AI subtitle generator for your business with v0
Design the editor first and let the rest follow. A timeline, a styled preview, a library and an export panel built directly from simple English descriptions, then a real speech model behind them that runs on the viewer’s own machine, a database for the videos and captions, and translation on your own AI key.
v0
$ Build the screens for a subtitle studio (a video player over a timeline of draggable captions, a styling panel with a live preview, a library, and an export panel), then wire in transcription that runs in the browser and a database for saved videos and captions.
- Editor generated first
- Speech model and database added next
- Ready to preview
Overview & core architecture
An AI subtitle studio turns a spoken video into timed, editable, translated captions, and it does the expensive part, the transcription, on the visitor’s own computer rather than on a server you pay by the minute.
The usual version of this is a service. You upload a video, a server somewhere listens to it, and captions come back with a bill attached, priced by the minute of audio. Every product in the comparison further down works that way, and the minute is the line they all meter.
This version downloads a speech model into the browser once and runs it there, in the background, while the page stays usable. A minute of transcription costs you nothing, and only the finished text and the video the person chose to upload reach your database. What you build instead is everything around that moment: a library, a timeline editor, caption styling, translation through your own AI key, and an export that produces a subtitle file or a captioned video.
The honest trade is written into every page of this guide. The model that runs in a browser is the smallest one, its accuracy sits below what the rented services return, and the first run downloads it, which the app says can take thirty to sixty seconds. A larger model buys accuracy at the cost of a longer download. Deciding where you sit on that line is the first decision below.
The timeline editor is the product
A raw transcript is a start, and nobody ships one. The screen where a person drags a caption to the right second, splits a line that runs too long and sees the result over the video is what they judge the app on, and it is where most of the build time goes.
Transcription minutes cost nothing
The speech model runs on the visitor’s own processor, so a thousand hours of video transcribed this month costs you the same as one. What you pay for is storage for the videos people keep and the translation calls that leave your app.
Translation is the only metered line
Translating a finished track goes through your own AI key at the provider’s per-token price, a few cents for an hour of speech at the default model’s rates. It is the one line that grows with use, so the app logs every call and caps each account.
Essential subtitle studio components
Six building blocks make up the studio, and the transcription is the one to prove first. Each is something you can ask your AI coding tool to build or rework in plain words.
In-browser speech-to-text
A speech model that downloads once and runs on the visitor’s own machine, in the background, so the page stays usable while it listens. It returns lines with a start and an end time, which is what everything else on this list is built on. No server hears the audio and nobody bills you for the minute.
Timeline caption editor
Every line on a track under the video, draggable to retime, editable in place, splittable when it runs too long and mergeable when it is choppy. Undo and autosave, because a caption editor is used for hours at a stretch.
Caption styling & live preview
Font, size, colour, background and position, shown over the actual video rather than in a settings form. What the person sees here is exactly what the export produces.
One-click translation
The finished track sent to your AI provider a batch of lines at a time, with every timestamp kept, and progress shown while it runs in the background. Each translated track becomes its own export.
Subtitle file & captioned video export
Three plain subtitle formats for uploading to a video platform, and a captioned video recorded in the browser for the platforms that cannot take a separate file. Export is where a subtitle tool either feels finished or does not.
Video library, quotas & admin console
Every upload with what has been done to it, hourly limits per action so one account cannot run up your translation bill, a demo account that wipes itself, and an admin view over users, videos and usage.
Own the subtitle studio or rent it by the minute
Most subtitle apps charge you based on audio minutes processed. They set monthly limits, charge per team member, and bill extra when you run out. Running the AI inside the user’s browser removes these minute limits entirely instead of just reducing them: that is the main difference to keep in mind.
Build your own
Own your platform completely. Transcription runs on your users’ devices, videos stay in your own database, and your only recurring cost is optional translation. With modern AI coding tools, building this takes a few weeks instead of months.
- Zero minute costs: Transcribe unlimited audio because processing happens directly on the user’s device
- Cheaper translations: Pay wholesale rates for AI translations and easily set monthly spending caps per user
- 100% custom branding: Keep your own brand, logins, and design without third-party restrictions
- Full feature control: Decide your own caption styles, export formats, and limits without paying for plan upgrades
- Complete data ownership: Store videos and captions in your database with full control over privacy and deletion
- Total code freedom: Own all source code outright and host your application on any server you choose
Rent the minutes
Rev · Descript · Kapwing · Happy ScribeRenting an existing tool gives you higher accuracy, an editor ready to use today, and automatic software updates. However, you pay a fee for every minute of video processed, plus extra monthly fees per user.
- Higher accuracy out of the box: Powerful cloud models offer higher accuracy with no initial setup or load time
- Ready to use today: Launch immediately, with options for human proofreading when accuracy matters most
- Zero maintenance: External companies handle all system updates, model upgrades, and bug fixes
- Pay-per-minute pricing: Every provider meters audio minutes, and many charge additional fees per user seat
- Use-it-or-lose-it plans: Monthly minute allowances expire whether your team actually uses them or not
- Restrictive free tiers: Free plans only cover occasional usage, forcing active teams onto expensive paid tiers
The clearest example of the seat-plus-allowance meter. A single person captioning under 45 minutes a month never pays, and a team pays per seat every month whether or not anybody captioned anything. The Pro tier is "$47.99 per seat/month" annually for "10,000 verbatim AI transcription minutes/seat/month", and human captions start at "$1.99 /min.", which is the rate to compare the browser model against when accuracy is the whole point.
rev.com · checked September 2026
An editor with transcription inside it, priced by media hours per person per month. The allowance is generous for one creator and resets whether it was used or not, so the bill is a function of headcount rather than of output. Descript is the row to read if what you actually want is a video editor that happens to caption.
descript.com · checked September 2026
Two meters at once, per member: subtitle minutes and translation minutes are separate allowances, and the free tier caps the exported video at four minutes. It is the closest product to this template in shape, which is what makes it the fairest comparison. Everything this template does for one account with no allowance, Kapwing does per member with two.
kapwing.com · checked September 2026
The row with the cleanest per-minute figure: once the allowance is gone, each extra minute is "$0.20/min", so an hour of video is $12 in top-ups. Multiply that by the hours your users would actually caption in a month and compare it to zero, then remember the honest half of the comparison: the rented model is more accurate than the one that fits in a browser tab.
happyscribe.com · checked September 2026
Rule of thumb: if you caption a handful of your own videos a month, do not build this. Rev’s 45 free minutes or Descript’s free hour covers you, and the rented models are more accurate than the one that runs in a browser. If you caption for clients, for a team or for other people’s uploads, the minutes are the bill, and owning the studio turns a meter into a fixed cost. The honest middle case is a product whose users need high accuracy on difficult audio, and there the right answer is to build the studio and swap in a larger speech model, accepting a longer first download in return.
Why build with v0
Skip the speech-recognition engineering. Describe the library, the editor and the translation you want, say who may use them, and every video, caption track and export is saved under its owner’s account without you writing server code.
v0 starts with the screens, and the backend comes when you ask for it: the server routes and logic that read and write real data, usually once the interface already exists and there is something real to connect it to:
Sketch
Describe the screen or component you want.
Preview
See it rendered live, and select any part of it to adjust directly.
Connect
Add a database and the routes that read and write to it, once the UI needs somewhere real to save.
Iterate
Prompt again for the next screen or the next piece of logic.
The order matters here more than with a full-app builder: v0 gets you a finished-looking interface fast, and the data underneath doesn’t show up until you ask for it and give it somewhere to live.
One clickconnects a database
Supabase, Neon, and Upstash are integrations you add from the project menu once a screen needs to hold onto something real, and v0 provisions the credentials and writes the routes that use them.
Live preview is the feedback loop
Every prompt updates the working interface right there in the chat, so you see the actual screen changing instead of imagining it from a description.
Design mode edits without a prompt
Select an element in the live preview, adjust its style directly or type a plain-language instruction, and v0 applies the change back to the real source code as a new version.
Pay a developer, or do it with AI
When you own your subtitle app, there are no per-minute processing fees. Your only real costs are constructing the code, video storage, and optional translations. Here is a clear breakdown of hiring a developer versus building it yourself using AI.
Hire a developer
Custom build, from scratch- Developer
- ~$11k-$42k
- Supabase (backend)
- Free tier · $25/mo (Pro plan)*
- Hosting
- $0 free tier
- AI translation
- Per token on your own key
- Build time
- ~210 hrs of their work
~$11k-$42k to build, then from $25/mo after launch
Our ~210-hour estimate, costed against the rate survey linked below, whose bands run from $45-$75/hr for North American contractors up through $100-$150+/hr for senior US developers, before the 20-40% an agency adds, which brackets the range at roughly $50/hr and $200/hr. Most of those hours are the speech model and the timeline, and neither shows in a screenshot. Then read the translation row: it is the only line that grows with use, and at the default model’s rates an hour of speech costs a few cents.
Build it with v0
From scratch, with v0- v0
- $0 ($5/mo of credits) to $30+/month (Plus)
- Backend (Supabase)
- Free tier · $25/month (Pro plan)*
- Hosting (Vercel)
- Free on Vercel’s Hobby plan
- Your time
- ~101 hrs
Free to try the idea, ~$30+/month on Plus while you build a real one, then whichever plan you keep using
v0 bills in dollars of credit rather than a flat fee, so cost tracks usage: importing the pre-built template can fit inside Free’s $5 a month, while a from-scratch build runs into Free’s 7-messages-a-day cap quickly and usually needs Plus, at $30 per user per month with no annual discount shown. Because v0 generates the interface and the backend as separate steps rather than one pass, expect more prompts to reach the same result than a tool that writes both together.
* Unlike most apps in this catalogue, this one keeps large files: the videos people upload live in storage until you delete them. Supabase Free includes 1 GB of file storage and 5 GB of egress a month, and pauses a project after a week without activity. Pro, from $25/mo, includes 100 GB of storage and 250 GB of egress, then charges $0.0213 per GB stored and $0.09 per GB served, and keeps a daily backup for 7 days. A retention rule that deletes a video a month after its last export is the cheapest decision on this page.
Prices and rates from supabase.com, developex.com, v0.app, v0.app and vercel.com, checked September 2026.
Decide before you build
Six decisions to make before writing code. Three of them decide what your users’ videos cost you to keep, and one decides how long they wait for the first caption.
Which speech model, and how long will people wait for it?
The smallest model downloads in under a minute and gets ordinary speech mostly right. Larger ones are more accurate and take longer to arrive on the first visit. Decide now which you ship and what the screen says while it loads, because a silent wait looks like a broken app.
How long a video will you accept?
The transcription runs in a browser tab with finite memory, and the template already warns itself above thirty minutes of audio. Decide the ceiling by length or by file size, say it before the upload rather than after, and refuse politely. A limit stated up front reads as a feature, and a tab that dies at 80% reads as a broken product.
Do you keep the videos, and for how long?
Uploaded videos are the only large thing in this app, and storage is the one bill that grows quietly. Decide whether a video lives until the person deletes it, expires a month after its last export, or is never kept once the captions exist. Build the deletion now rather than after the storage bill arrives.
Which languages, and who pays for translation?
Transcription costs $0, but AI translation costs money for every translated word. Decide upfront which languages to support and set strict usage limits per account (for example, 5 free translations per month). Adding a hard limit now prevents surprise bills later when user activity spikes.
Is video storage public or private?
By default, uploaded videos are accessible to anyone with the link so the browser can process exports smoothly. Switching to private storage with expiring links keeps user content secure, but requires setting up server-side rendering for video exports. Decide on your privacy model before your first user uploads sensitive content.
Who gets an account, and what does a demo get?
Open sign-up, invitations, or a demo account that anyone can try. The template gives demo accounts their own role and wipes them after an hour of inactivity, which is the right shape for a public trial. Whatever you choose, limits attach to the account rather than the visitor, because accounts are free to create.
Comparing your build options
Building a box that shows a transcript is fast. The hard part is everything behind it: a speech model running in the visitor’s browser, a timeline that stays in step with the video, translation that keeps every timestamp, and a captioned file at the end. Here are three ways to build the exact same product.
Getting a speech model to run inside a browser tab, without freezing the page, is where the first weeks go. Then the caption you dragged has to stay in step with the video, the translated line has to land at the same second as the original, and the captioned file has to come out of a browser that was never designed to render one.
A kit gives you a login page, a file table and a settings screen. It has never heard of a caption, a timestamp or a speech model, so the editor, the transcription and the export, which are the whole product, start from nothing.
You describe the editor in plain words and it appears in a live preview, then the speech model, the database and the routes behind it are a second, deliberate ask. The check that matters: sign in as a second account and confirm the first account’s videos never appear in the library.
Estimate your exact build timeframe
Customize your feature list below to see how build time changes. If you only need subtitles in one language, or nobody will export a captioned video, uncheck those rows to reduce the estimate.
Your estimate
101 hrs
start to finish
Based on the 7 of 7 features you’ve selected, plus ~21h of groundwork. Toggle any on the left to watch the number move, and open the groundwork row to untick what you have already, such as a database that is already running or going live if you are only building a mock-up for now.
A rough estimate, not a quote. Real time depends on how much you customize and how clean your data is.
Let’s set up the tools you need
v0 runs entirely in the browser too, so there’s no download and no terminal. Before step 01: sign up, pick a plan, and know that a database is one click away once a screen actually needs to save something. GitHub is the last piece, and it’s what turns the chat into a project you can hand to someone else.
v0 account
Sign in with a GitHub, Google, or email account and you land in a chat where you describe the interface you want. There’s nothing to install.
Sign up for v0v0 subscription
Free includes $5 of credits a month, capped at 7 messages a day, which is fine for trying a few screens and thin for a real build. Plus is $30 per user per month, billed monthly only (v0’s pricing page shows no annual option), and it’s the realistic floor once you’re iterating past a handful of screens.
Compare v0 plansDatabase (Supabase, Neon or Upstash)
Where your project keeps its data, added when a screen needs one. v0 generates the interface first. A database is a one-click integration you add from the project menu once a screen needs somewhere real to save to, with Supabase, Neon and Upstash as the options, and connecting one lets v0 write the routes that use it.
Connect a database in v0GitHub connection
Not needed to build anything, since v0 keeps its own history of every change. Connect a repository from the chat’s Git panel and v0 also commits every code-changing message to its own branch, ready to merge as a pull request. That is the step that turns the chat into a project other tools, and other people, can use.
Connect v0 to GitHubThe database step is the one worth not skipping once your screens need real data. Everything else here takes a couple of minutes, and after that you’re just describing what you want.
Build your subtitle studio, one chat at a time
v0 generates the interface first and the rest when you ask, which suits this template well: the editor is exactly the kind of screen worth having in front of you early. Keep one feature to one chat so its history stays a line you can follow.
- 01
Generate the editor before anything else exists
Start with the screen the whole product is judged on. Placeholder captions are fine, and finding out the interaction is wrong now costs nothing.
PromptSketch the editorBuild the editor screen for a subtitle studio: a video player above a horizontal timeline of captions, each draggable to retime and editable in place, with split and merge, keyboard shortcuts for play, pause and next caption, and undo and redo. Beside it a styling panel (font, size, colour, background, position) whose changes show over the video immediately, and an export panel with buttons for subtitle files and a captioned video. Use placeholder captions for now. I will add the real speech model next.
Placeholder data is fine here, and only here. Everything after this step gets something real behind it.
- 02
Add the real speech model to the screen you just built
This is the step that turns a convincing mock-up into a studio. Do it before the database, because if the model does not behave in the browser, the rest of the plan changes.
PromptGet the speech model running in the browserAdd @huggingface/transformers and make the editor real: a file picker that loads a local video into the player and transcribes it in the browser into the timeline. Run onnx-community/whisper-tiny in a Web Worker so the page stays responsive, with device set to webgpu and a fallback to wasm, decode the audio in the browser and feed it to the model in thirty-second chunks, and show the model download and the transcription as two separate progress bars. All of this runs client-side. Do not add a server route that receives audio or video for transcription.
Be explicit that no server route touches the audio. v0 will otherwise reasonably reach for a route, since routes are how it does everything else.
- 03
Start a new chat for the database, storage and the routes
Saving work is a separate feature from editing, so give it its own chat. Restoring a version later then undoes the persistence work without taking the editor with it.
PromptConnect a database and design the modelIn this chat, connect a Supabase database and create the tables and the API routes behind them. Videos, each owned by one account, with the file’s storage path, duration and detected language. Subtitle tracks, one per video and language, holding captions as timed segments plus a status and progress for translation. Usage records, an activity log, a settings table and a rate-limits table keyed by account and action. Create a private storage bucket for uploads where an account reads and writes only its own folder, and make the editor load and save a video’s tracks through the routes.
Ask for the routes alongside the tables. A schema with nothing reading it leaves the editor exactly as unsaved as it was.
- 04
Add auth and roles, checked on the server and in the database
Two layers, same rule. A route check is the first line, row-level security is the second, and it is the one that still holds when a route forgets to filter.
PromptAdd auth and access rulesAdd authentication and the role model. Email-and-password sign-up, login, logout, a session and a profile row per account, with signed-out visitors sent to the login screen. Then four roles (visitor, user, admin and demo) held in their own table rather than on the user record, since anything on the user record can be edited by that user, plus a helper the access rules can call without recursing. Every API route must check ownership server-side rather than trusting anything the browser sends. Then turn on row-level security for every table so the database enforces the same thing: a person reaches only their own rows, an admin reaches all of them, and every insert and update carries an explicit check that the row is not being filed under someone else.
v0 routes run on the server, so the check belongs there. A permission enforced only in the component is a permission anyone can skip.
- 05
Add translation and the exports, then tidy the editor with Design mode
Translation is the first and only call that leaves the app, so it gets a route with the key handling and logging built in. Spend the time you save on a proper visual pass over the editor.
PromptAdd translation and exportIn a new chat, add one server route that calls my AI provider with the key held in server environment variables, refuses any caller who is not signed in, and logs every call with the account, the video and the token counts. Add a "Translate" action on a track that sends its captions to that route ten at a time with their timestamps, asks for the same lines in the chosen language with the timestamps untouched, returns immediately, writes progress to the new track as batches finish, and polls it from the editor. Then exports: .srt, .vtt and .txt produced from any track with no AI involved, and a captioned-video export in the browser that draws the styled captions over the video on a canvas and records a WebM. Tell me plainly what the captioned export needs from the storage bucket, and what making the bucket public would mean for who can open a video by its link.
For visual fixes on the editor, select the element in the preview and use Design mode rather than describing where it sits. It is faster and it changes the real code.
- 06Destination
Add limits, admin and the demo account, then open a pull request
The pieces that keep the bill and the trial honest come last, then walk the whole thing through and merge, which, if that branch is the linked Vercel project’s production branch, also deploys it.
PromptAdd limits, admin, demo, and shipAdd rate limits of ten uploads, twenty transcriptions, thirty translations and fifty exports per account per hour, counted in the rate-limits table rather than in memory, with quota costs read from the settings table. Add an admin page over users, videos, usage and settings, reachable only by the admin role. Add a demo role that any sign-up ending in @demo.com receives automatically, with a job that wipes that account’s videos, tracks, logs and usage after an hour of inactivity. Then help me walk the whole flow: sign up as a demo account and caption a short clip, translate it, export a .srt and a captioned video, then sign up as a second real account and confirm it sees none of the first account’s videos. Once it holds up, publish and open a pull request for it.
Protecting user content and translation keys
A subtitle studio manages three critical assets: your users’ videos, their saved captions, and your paid translation keys. Follow these essential security rules before launching.
Secure login & password protection
Sign-up, sign-in, sessions and password resets come from the authentication service attached to your database. Use it as it comes, because a subtitle studio gives you no reason to build identity logic of your own, and a hand-written version that is subtly wrong fails silently until somebody’s videos are exposed.
User access levels & safe demo mode
The template ships visitor, user and admin, plus a demo role that any sign-up with a demo address receives automatically. A demo account can do everything a real one can, and everything it did is wiped after an hour of inactivity, which is how a public trial stays harmless.
Private user data protection
The template ships 31 access policies, and the rule they enforce is simple: a video, its subtitle tracks, its usage records and its activity log belong to one account, and an admin reaches all of them. The database applies that on every read and write, so a screen that forgets to filter still cannot show one person another person’s captions.
AI access for logged-in users only
All three server functions refuse a caller without a valid session, so an anonymous visitor cannot spend your translation key by finding the address. Check this first on any function you add, because an open AI endpoint is an invoice rather than a data leak.
Abuse protection & spending limits
Ten uploads, twenty transcriptions, thirty translations and fifty exports an hour per account, counted in the database rather than in one server’s memory, with quota costs you can change in settings. This is the part that keeps one enthusiastic afternoon from becoming your whole month’s AI bill.
Video & file protection
A later migration makes the uploads bucket readable by anyone holding a link, because the captioned-video export draws the video onto a canvas in the browser and that only works with a public file. Listing and writing still require the owner. If your users’ videos are sensitive, make the bucket private and move the captioned export to a server, and say which you chose.
Paid API key security
The provider key lives in the function’s secrets and never in the app, where anyone could lift it. Then the part people skip: the caption text goes to your provider for translation, and the file name goes to it for language detection. Say so to whoever signs in, and read your provider’s terms on what it does with what it receives.
Data backups & recovery
The free tier keeps no backups, so during the build your database is the only copy of every caption anybody fixed by hand. Daily backups kept for seven days start on Supabase Pro at $25/mo. Move to it before the first stranger uploads, because a lost afternoon of caption edits is not something you can regenerate.
Review the access rules (row-level security policies) on every table. For each one, tell me in simple terms who can view, add, edit, and delete records, confirm that people can only reach their own data while the right roles can reach more, and flag anything left open that shouldn’t be.
Paste this into the chat before launch so v0 checks nobody can see data they shouldn’t.
One rule outranks everything above it: the database service key and your AI provider key live on the server and nowhere else, which means never inside the app people download and never inside a repository. If either gets out, treat it as compromised and rotate it the same day.
What speeds the build, and what slows it
Speeds the build
- One screen per message, checked in the live preview before you ask for the next one
- Adding a database as soon as a screen needs to remember something, so v0 wires it up as it builds
- Clicking the thing you want changed in Design mode, rather than describing where it sits
- One feature per chat, so its history reads as a straight line you can walk back
- Sending a finished chat over to GitHub before starting the next feature, rather than stacking several together
Slows the build
- Asking for the whole app in one message instead of one screen at a time
- Building screens for data the database does not hold yet
- Describing which button to change when you could just click it
- Letting one chat run for weeks, so going back to an older version undoes everything built after it
- Approving several messages in a row without looking at the preview after each one
Connecting GitHub (Optional)
Every change in v0 is saved automatically without any technical setup. You only need to link GitHub if you want a private copy under your own control or plan to hand the codebase over to external developers.
Every message is a version
Each time a message changes your code, v0 saves it as a new version. Restoring an older one adds it back as the newest version instead of branching, so the history stays one straight line.
Versions, v0 docsUndo from the chat itself
Scroll back through the conversation and click the revert arrow on any earlier reply, or open the version number in the top right to jump straight to a specific one.
Connecting GitHub creates a real repository
From the chat’s Git panel, connect an existing repository or create one. v0 never writes straight to your main branch: every code-changing message is committed to its own working branch first.
GitHub integration, v0 docsA pull request is how it gets merged
When you’re ready, publish and open a pull request from that working branch into your base branch, review it like any other, and merge it. Starting a new chat picks up a fresh branch for the next round of changes.
This can also be v0’s deploy path
If the branch your pull requests merge into is also the linked Vercel project’s production branch, merging one triggers a production deployment. If it isn’t, the merge just follows whatever branch behavior that Vercel project is already configured with.
GitHub integration, v0 docsWhere to host your application
Hosting gives your app a home on the internet so anyone can open it via a web link. Choose a service below to make your site live. (Your database, logins, and business records are stored separately in Supabase, covered below).
| Host | Best for | Notes | Free tier |
|---|---|---|---|
| Vercel | One-click deploys | Connect the repository and it publishes on every push, and the template already carries the one routing file a link straight to a video needs. The free Hobby tier is personal and non-commercial, so a studio that clients or customers sign in to belongs on Pro at $20/user/mo. | Pro from $20/user/mo (Hobby is non-commercial) |
| Netlify | Drag-and-drop or Git | Connect the repository or drag the built folder onto the page. Accept the redirect rule it prompts you for, or a link to one video opens a not-found page instead of the editor. | Free tier |
| Cloudflare Pages | Users in more than one country | Serves the app from wherever the person opening it is. The app itself is small, because the speech model arrives from its own home rather than from your host, so the first paint is fast almost anywhere. | Generous free tier |
| GitHub Pages | Not really this app | Publishes from a GitHub project once one routing setting is changed. Here to be ruled out: free means a public repository, and the client sits beside a project that holds function secrets you do not want browsed. | Free from a public repo only |
| Firebase Hosting | Teams already on Google | One setup, then a single command per release, with the rewrite for deep links in its own config file. Worth it mostly if Google is already your stack. | Free Spark tier |
| AWS Amplify Hosting | Teams already on AWS | Deploy from the AWS console with a rewrite rule for deep links. Sensible when AWS is already where your billing goes, never because the app asked for it. | Free tier (build + hosting) |
| Surge | Publish from the terminal | One command puts the built folder online with no repository in the loop. Fine for showing a colleague the editor, wrong the moment real people upload their own videos. | Free - unlimited publishing |
| DigitalOcean App Platform | DigitalOcean users | Builds and serves from the account you already have, which in a small company means one fewer supplier beside your database and your AI provider. | Free - 3 static sites, 1 GB/mo transfer |
Two questions decide this, and speed is not one of them. Does the plan allow commercial use, which Vercel’s Hobby tier does not. And does a link straight to one video open the editor for somebody who has never visited, because a link to a specific video is exactly what a person pastes to a colleague. The speech model does not touch your host at all: the browser fetches it from its own home on the first visit and keeps it.
The first transcription downloads the speech model, and on a slow connection that looks like nothing is happening. The template says thirty to sixty seconds and gives up after two minutes. Before you launch, try it on a phone on mobile data rather than at your desk, keep the progress message on screen the whole time, and decide what the app says if the download fails rather than letting a spinner run forever.
Keep your data in Supabase
Videos, captions, accounts and usage, plus the one function that talks to your AI provider, which is where the key belongs and the only place it should ever be.
| Service | Best for | Notes | Free tier |
|---|---|---|---|
| Supabase | Data, auth, files and the translation call | Captions and usage in Postgres, accounts from its auth service, uploaded videos in storage, and one function per AI job with the provider key in its secrets. Make a free project, hand over the URL and publishable key, and it is connected. The line to watch is storage, because this is one of the few apps here that keeps large files, and the decision to watch is whether the video bucket stays public. | Free tier, then usage-based |
Add AI capabilities in one simple step
Securely route your AI API keys through a lightweight serverless function. Use simple prompts to automatically translate a subtitle track, detect the spoken language, and tidy the lines before export.
Translate a finished track
The feature people buy a subtitle tool for. Send the captions to your provider a batch at a time, keep every timestamp, and show progress while it runs, because a long video takes a while and a blank screen looks broken.
Add one server-side "ai" function that talks to my AI provider, with the key held in server secrets and never anywhere the browser can reach, and make it refuse any caller who is not signed in. Then add a "Translate" action on a subtitle track: send the lines to that function ten at a time with their timestamps, ask for the same lines in the target language with the timestamps untouched, and save the result as a new track linked to the original. Return immediately, write progress to the track row as batches finish, and have the editor poll it so the person sees a bar rather than a spinner. Log every call with the account, the video and the token counts.
Detect the language from the audio, not the file name
Guessing the spoken language from a file name works until somebody uploads recording_final_v2.mp4. Use the first minute of the transcript instead, and let the person correct it before anything else runs.
Change language detection to work from the first thirty seconds of the transcript rather than from the file name. Send that text to the ai function and ask for a two-letter language code, show the result in the editor as an editable field with a note saying it was detected, and use the person’s choice for translation from then on. Fall back to the file name only when no transcript exists yet.
Tidy the lines before export
A raw transcript has no punctuation worth the name, runs sentences together and keeps every um. One pass through the model turns it into captions a person would have written, and the editor keeps the original in case it overreaches.
Add a "Tidy captions" action that sends the track to the ai function and asks for the same lines with punctuation and capitalisation fixed, filler words removed, and any line longer than 42 characters split at a natural break, keeping every start and end time and never changing the meaning. Show the result as a proposal the person accepts or rejects line by line, and keep the original track untouched until they accept.
Chapters and a summary from the transcript
The description, the chapter markers and the short summary a video platform asks for are all in the transcript already. Drafting them is the chore that stops people publishing.
Add a panel on the export screen that sends the finished transcript to the ai function and returns a short summary, five to eight chapter markers with timestamps, and a handful of tags. Present all of it as editable drafts the person can copy, and let them regenerate any one part on its own without redoing the rest.
v0 doesn’t ship its own model for these prompts, so you bring an API key for whichever provider you want, and v0 writes the route that calls it. Start with a cheap model while you’re still iterating on the prompt itself, then swap in a stronger one for the version that ships, and keep every AI feature behind that one route so there’s only one key to rotate.
Get a head start with our template
Everything above starts from an empty folder, and it does not have to. The same studio exists already built: the speech model runs, the timeline works, translation runs in the background and the exports come out, so your time goes on the languages, the styles and the name on the door.
AI Subtitle Studio
The exact subtitle studio this guide builds, packaged so you can open it, point it at your own backend, and make it yours from there. A subtitle workspace that takes a video from spoken words to a finished file. Transcribe it locally with no per-minute cost, fix and style the lines on a timeline, translate into other languages, and export a captioned video - so one upload reaches a much wider audience.
The key benefits of starting with a template
The speech model, the timeline editor, translation and the exports already work. Behind them, the roles, the hourly limits, the demo account and the admin console are done too.
Building the core from scratch
~101 hrs
Opening the template, already built
~1 hr
Pay Once, Own Forever. Build exactly what your team needs without renting a monthly SaaS subscription, paying per-seat fees, or dealing with platform lock-in.
Transcription in the browser, already wired
The speech model loads in a background worker, uses the graphics chip where the browser allows it and falls back where it does not, and chunks long audio so the page stays usable. That is the part a first attempt gets wrong, and it is done.
A timeline editor with undo and autosave
Captions on a track under the video, retimed by dragging, edited in place, with keyboard shortcuts, undo and autosave, plus a styling panel whose preview is what the export produces.
Translation in the background, progress on screen
Send a track to your own AI key and the function works through it in batches while the editor shows progress. Each translated track saves as its own version and exports on its own.
Four export paths
Three plain subtitle formats generated on the server with no AI involved, and a captioned video recorded in the browser for the platforms that cannot take a separate file.
Roles, limits and an admin console
Visitor, user and admin roles plus a self-resetting demo role, 31 access policies holding each account to its own videos, hourly rate limits on uploads, transcriptions, translations and exports, and an admin view over users, videos, usage and settings.
From founders who build on our templates
We needed a working product in front of users fast. I started from one of these templates instead of a blank repo, customized it in our AI tool, and shipped in days - not the weeks it usually takes.
Jeevan ThomasFounder & CEO, Hado.aiCommon questions
The transcription minute is, yes. The speech model downloads into the visitor’s browser on first use and runs on their own processor, so no service bills you for the audio. What you pay for is storage for the videos people keep and, if you offer it, translation through your own AI key, which costs tokens rather than minutes.
Less accurate than the rented services, and honestly so. The model that fits in a browser is the smallest one, and it gets clear speech mostly right and difficult audio less so, which is why the timeline editor exists. A larger model is a one-line swap and buys accuracy at the cost of a longer download on the first visit.
Yes, to your own storage, so it can sit in the library, play under the editor and be exported later. The transcription itself still happens in the browser rather than on a server. Decide how long uploads live, because they are the one large thing this app keeps.
A browser tab has finite memory, so this is a decision rather than a fixed number. The template chunks audio into thirty-second pieces and warns itself above thirty minutes. Short talks and lessons are comfortable on ordinary hardware. Set a ceiling you can defend, say it before the upload, and fail politely.
The speech model transcribes many spoken languages, and translation into any target language goes through your own AI key. One honest note: the template guesses the spoken language from the file name rather than the audio, so the editor lets a person correct it, and the AI section shows the prompt that fixes it properly.
Yes. The browser draws the styled captions over the video and records the result as a WebM file, with no server rendering. It needs the uploaded video to be readable by the browser, which is why the template’s storage bucket is public, and it is slower than a desktop editor because it plays the video through in real time.
No. Describe what you need in plain language and your AI coding tool writes the tables, the accounts, the access rules and the storage rules. Your own job is creating a free Supabase project for it to point at, so the records end up somewhere you own.
Less than a subtitle service, because the metered minute is missing. What is left is Supabase and a host, both starting free, with Supabase Pro from $25/mo once real people upload and you want backups, plus storage for the videos you keep and a translation bill on your own AI key that runs to cents per hour of speech at the default model’s rates.
Inside the app, nobody: every video, track and usage record belongs to one account and the database enforces it on every query. Outside it, be honest with yourself about the storage bucket, which the template ships readable by anyone holding a link so the captioned export works. Make it private and render on a server if your users’ videos are sensitive.
Not without an account, but the template makes accounts cheap to try: any sign-up with a demo address gets a demo role, can do everything a real account can, and is wiped after an hour of inactivity. That is the right shape for a public trial of a tool that spends your translation key.
Nothing here is proprietary. Captions live in ordinary PostgreSQL and export as standard subtitle files, videos come out of storage as the files they went in as, and a standard database dump gives you everything in a form any Postgres host accepts.
Yes. Every host here connects a custom domain with free HTTPS in a few clicks. Worth doing before you invite anyone, because a tool that asks people to upload their own videos should look like it belongs to you.
No. You describe the screen you want in the chat and v0 generates the React and Next.js code behind it. Sign up, pick a plan, and connect a database once your screens need real data. The setup section above walks through each one.
Both, but not automatically at the same time. v0 generates the interface first. The backend (a database and the API routes that use it) is something you ask for once a screen actually needs to save or load real data.
Free plan credits reset monthly, and the 7-messages-a-day cap resets every day. If you hit either limit mid-build, what you’ve already built stays put. You wait for the reset or move up to Plus to keep going right away.
References
Sources checked September 2026- 01Pricing (AI minutes per seat, human captions), Rev. rev.com
- 02Pricing (media hours per person), Descript. descript.com
- 03Pricing (subtitle and translation minutes per member), Kapwing. kapwing.com
- 04Pricing (minutes per month, top-up rate), Happy Scribe. happyscribe.com
- 05Transformers.js documentation (running models in the browser). huggingface.co
- 06whisper-tiny model card (the browser speech model). huggingface.co
- 07API pricing (per-token rates for the default translation model), OpenAI. developers.openai.com
- 08Pricing (Pro plan, storage, egress, backups), Supabase. supabase.com
- 09Web developer hourly rates 2026 (freelance and agency benchmarks). developex.com
- 10Row Level Security, Supabase docs. supabase.com
- 11Storage access control, Supabase docs. supabase.com
- 12v0 homepage. v0.app
- 13Pricing (Plus, Business), v0. v0.app
- 14Pricing details (Free tier, credit rollover), v0 docs. v0.app
- 15Databases (connecting Supabase and others), v0 docs. v0.app
- 16Full-stack apps, v0 docs. v0.app
- 17GitHub integration, v0 docs. v0.app
- 18Deployments, v0 docs. v0.app
- 19Design mode, v0 docs. v0.app
- 20Versions, v0 docs. v0.app
- 21Pricing (Hobby plan), Vercel. vercel.com
This guide is general information. Third-party prices, plan limits and market rates are quoted from the sources above and were last checked on the date shown. Vendors change them without notice, so confirm before you budget. Transcription accuracy, speed and the practical file limit depend on the visitor’s own device and browser, so treat any performance expectation here as a starting point to test rather than a specification. Build hours and the cost estimates derived from them are our own estimates, not quotes. v0 is a product of Vercel. Verify current capabilities and pricing before relying on them.