← Home
GLOSSARY

By Valmera Editorial · Published · Updated

Text-Based Video Editing

Text-based video editing is a workflow for cutting speech-driven video by editing a time-aligned transcript. Select, delete, copy, or rearrange words in the document and the editor applies the matching trim or move to the linked audio and video. It makes dialogue selection fast, but the transcript alone cannot describe silent shots, framing, color, music, or visual effects.

Three Things “Edit Video with Words” Can Mean

Search results often collapse three different products into one phrase. The practical test is what your text controls and whether the system is changing uploaded footage or inventing new footage.

1. Edit the transcript

You select existing words as if the recording were a document. Delete the sentence and its linked media leaves; copy or move the sentence where the editor supports it and the media follows. This page is about that workflow.

2. Type an editing instruction

You write an outcome such as “keep the strongest answer, remove pauses, and add captions.” An AI editing agent chooses and sequences operations against the transcript, audio, and frames. The words are a command, not the footage interface.

3. Generate video from text

A text-to-video model synthesizes new frames from a prompt. That is video generation, not transcript-based editing of a recording. It can use similar language while solving a different job.

How the Mapping Actually Works

The whole workflow rests on one data structure: a two-way index between positions in a text document and time ranges in a media file. Everything else is interface. Four stages build and use it.

1. Transcribe with per-word timing

A transcript alone is not enough — a subtitle file gives you a sentence per cue, and a sentence is far too coarse to cut with. What the workflow needs is word-level timestamps: a start and end for each individual word. Speech models produce or align these on a coarse grid. The Whisper architecture, for example, computes a log-mel spectrogram over a 25 ms window every 10 ms — 100 frames per second — and a stride-2 convolution halves that to 50 encoder positions per second, so the native resolution is 20 ms. Any timestamp printed finer than that is arithmetic, not measurement.

2. Bind text offsets to source time

The editor holds the transcript as a list of word records, each carrying its character span in the document and its time span in the source. That gives you both directions for free: a text selection resolves to a time range, and a playhead position resolves to a word to highlight. The document you are reading is a view of a timed index, not a file in its own right.

words: [
  { "text": "we",      "start": 12.437, "end": 12.556 },
  { "text": "shipped", "start": 12.556, "end": 12.921 },
  { "text": "it",      "start": 12.921, "end": 13.024 },
  { "text": "on",      "start": 13.024, "end": 13.160 },   <- gap of 352 ms follows
  { "text": "Friday",  "start": 13.512, "end": 14.005 }
]

Two details in that snippet decide the quality of every edit made from it. Inside the phrase, each word's end is exactly the next word's start — not out of confidence, but because continuous speech has no silence between "shipped" and "it" to measure. And the 352 ms before "Friday" belongs to neither word: it is a breath, and it is the most useful number on the page, because that is where a cut can hide.

3. Resolve a deletion into surviving ranges

Deleting text does not delete anything. It marks words as dropped, and the editor recomputes the keep list: the ordered set of source spans that survive. Delete "it on" above and the program becomes [0 → 12.921] + [13.512 → end]. Note that the second range starts at 13.512 rather than 13.160 in an editor that includes the following silence. Edge policies vary: another editor may preserve the gap or offer pause controls separately. The preview decides whether that technically valid range sounds natural.

The edges also have to be snapped. Cutting inside a word truncates a phoneme: a word-final /t/ or /k/ is a silent closure followed by a release burst, and cutting between the two ends the word on a hole that reads as a swallowed syllable. A fricative like /s/ runs 100–150 ms and clips into an obvious hiss. No crossfade repairs this, because the information was never in the range you kept. So every edge moves outward to the nearest word boundary before anything is recorded.

4. Conform the picture at render

Conceptually, the surviving ranges become an edit decision list or equivalent native sequence edits. The original media remains unchanged, although an application may encode proxies or preview caches while you work. At export, picture time is quantised to whole frames: an edge at 12.921 s becomes frame 388 at 30 fps, or 12.933 s. Audio can retain finer timing, so the application must keep the linked edit coherent across both streams.

One consequence is worth stating plainly, because it explains why professional systems anchor decisions in source time rather than output time. Deleting a sentence at minute 3 shifts every subsequent moment in the finished video earlier. If a caption, a zoom or a music cue had been stored at "output second 400", it now points at the wrong content. Stored against the source, it still points at the same words.

The Lineage: Research, Descript, Everyone Else

The idea is much older than the product that popularised it. Human-computer interaction researchers had working transcript-driven video editors more than two decades ago. Carnegie Mellon's Silver paper (2002) described synchronized storyboard, editable-transcript, and timeline views. Content-Based Tools for Editing Audio Stories (UIST 2013) propagated transcript edits to speech, and QuickCut (UIST 2016) applied the interaction to narrated video. The common insight was simple: speech is easier to search and select as words than as a waveform.

Descript's current script editor made the document itself the primary commercial editing surface: delete a word and the linked media disappears; cut and paste a sentence and the media moves; restore removed media and the edit returns. That product-level inversion, not transcription alone, is what made the workflow feel new.

Other editors expose the transcript alongside a conventional project. Premiere Pro Text-Based Editing can select, cut, and rearrange transcript text while trimming and placing the matching clips on the timeline. DaVinci Resolve Studio, VEED, and CapCut now offer related transcript workflows, but their operations and restrictions are not interchangeable.

A separate research branch deserves a name because it is routinely confused with this one. Text-Based Editing of Talking-Head Video (Fried et al., SIGGRAPH 2019) let a user type a word the speaker never said and synthesised the face and mouth to match. That is generative video, not an index into a recording. Editing a transcript to remove what was said and editing a transcript to fabricate what was not are opposite operations that happen to share an interface.

Which Editors Support Text-Based Video Editing in 2026?

These are current, documented implementations as of August 24, 2026. “Text-based” does not promise the same controls in every product, so the last column matters more than the label.

EditorTranscript workflowImportant boundary
DescriptDelete, cut, copy, and paste script text; linked media follows; removed media can be restored.Script-first, with a timeline available when timing and layers need direct control.
Premiere ProSelect, cut, and rearrange transcript text to trim and place clips; filter speakers, fillers, and pauses.Adobe says the Text-Based Editing workflow does not itself support captions; generate them from the final sequence.
DaVinci Resolve StudioTranscript-driven rough cuts and timeline editing; Resolve 20 also documents script-matched IntelliScript assemblies.Text-based editing and IntelliScript are Studio features, not part of the free edition.
VEEDCut, trim, restore, remove pauses, and strip filler words from the Edit by Script panel.VEED currently says text-drag reordering is unsupported and languages must separate words with spaces.
CapCutEdit a transcript in a side panel and find filler words or speech gaps before returning to the main editor.The transcript covers dialogue cleanup; visual polish remains in CapCut's timeline and smart tools.

Valmera belongs in the adjacent prompt-based category: it uses a word-timed transcript as one evidence layer, but the user describes the result instead of manually deleting the document. See the Valmera versus Descript comparison when choosing between delegation and direct transcript control.

Where It Runs Out

A transcript is a lossy projection of a video. Speech at a conversational 120–150 words per minute is a few hundred bits a second of information; the picture is orders of magnitude more. Anything that did not survive the projection cannot be addressed by the transcript alone. Five constraints follow. A product can overcome them by adding a timeline, frame analysis, or an editing agent, but not by pretending the missing visual and acoustic information exists inside the words.

It can only see speech

Silent b-roll, a music bed, a screen recording with no narration, a reaction shot, a long look to camera: none of these produce text, so none of them can be selected. A 12-second establishing shot is a blank in the document. This is also why silence detection is a separate index rather than a transcript feature — the gaps between words are exactly the part of the recording the transcript does not describe.

It can only express what, never how

"Punch in on the word revenue", "hold this beat two seconds longer", "grade the interview warmer than the b-roll", "drop the music under this line" — none of these are deletions, insertions or reorderings of text. A document of words has no vocabulary for them. Every complete editor therefore supplies other controls, and the moment your edit is about craft rather than dialogue selection you leave the transcript-only operation.

One caret cannot cut sound and picture separately

A text selection is a single range, so the audio edit and the picture edit necessarily land at the same instant. That rules out the most basic polish in the craft: J-cuts and L-cuts, where sound leads or trails the picture by a beat to smooth the join. The transcript operation produces a straight cut; an editor can still refine it afterward with separate audio and picture controls.

A word boundary is safe, not good

Snapping to word boundaries protects the audio, but inside a phrase the boundary is notional rather than acoustic — speakers coarticulate, so the end of "shipped" is already shaping the vowel of "it". A splice there is clean at the sample level and still wrong at the sentence level, because it joins two different pitch contours mid-breath. The listener hears the prosody jump even though nothing is damaged. Genuinely invisible cuts land in pauses, which the transcript does not mark and you have to look for.

And the picture still jumps

Removing a sentence from a static talking-head shot leaves the speaker in a visibly different position on either side of the join — the definition of a jump cut. The text edit was one keystroke; covering it with b-roll, a punch-in or a cutaway is a separate piece of work the document view cannot do for you. Text-based editing makes the cut cheap and leaves the consequence at full price.

Why It Matters in Practice

Take a 90-minute webinar that has to become a short highlight cut. Video is serial: at normal speed, reviewing every answer costs the recording's full duration. A transcript is randomly addressable. You can skim, search for a product name, jump between speakers, and read the context around a hit without scrubbing a waveform. That change in navigation is the workflow's durable value.

So you select the keepers, delete the rest, and the 11 minutes exist in about an hour. Then you watch it. The picture jumps at all forty joins, because you cut a locked-off shot forty times. Two of your keepers came from opposite ends of the session and splice a confident answer onto a tired one. The segment you moved earlier now references a slide the viewer has not seen. None of these are transcription errors. They are the parts of the edit that were never in the text, arriving all at once at the moment you thought you were finished.

The honest summary of the workflow is that it collapses the selection problem and leaves the construction problem largely intact. Deciding what survives gets faster; making the surviving passages feel like one intentional video still requires visual and audio judgment.

Common Misconceptions

"Text-based editing is AI video editing."

Text-based editing names an interface; AI video editing names a broader class of automation and decision support. Speech recognition usually creates the transcript, but a human can still choose every deletion. Descript now combines its script editor with Underlord, and Premiere combines Text-Based Editing with AI Assistant. A product can offer manual transcript control, AI delegation, or both.

"Editing the transcript edits the video."

Only the operations a product binds to media do that. Deletion is common; Descript and Premiere also document moving or rearranging selections, while VEED currently does not. Correcting a transcript's spelling normally fixes text and captions, not the recorded voice. Generative speech replacement is a separate feature even when it appears in the same editor.

"It is non-destructive, so any cut is reversible."

Major editors preserve the source media, and Descript and VEED explicitly document restoring removed transcript content. That makes the media operation reversible; it does not make a dense rough cut easy to understand after hundreds of decisions. Reversible describes project state, not editorial clarity.

"Deleting a word deletes exactly that word."

It deletes a media range resolved from estimated word timing. The editor may include adjacent gaps, snap to a safer boundary, or quantize the picture edge to a whole frame. Exact edge policy differs by product, which is why the audible or visible cut can land a fraction away from what the highlighted letters imply.

"The timestamps are exact."

They are model estimates. Recognition errors, overlapping speakers, noise, accents, and the absence of a clean silence can all move a boundary. A transcript is an excellent index, but the rendered splice—not the decimal timestamp—is the final test.

"It replaces the timeline."

It can replace timeline work for dialogue selection—Descript explicitly describes script editing with no timeline required. It does not remove the need for visual, timing, audio, and layering controls elsewhere in a complete editor. Premiere and Resolve expose transcript edits directly alongside their timelines; Descript keeps timeline and canvas controls available for precision.

How This Works in Valmera

Valmera is an agentic video editor, and it takes the index from text-based editing without taking the interface. Every upload is analysed once into a word-timed transcript with word-level timings, plus silence detection, shot detection and labelled frame tiles the agent reads directly. Every later edit resolves against that index; all cuts snap to word boundaries; transcript search resolves a phrase to a real source range rather than a scrubbed guess.

The difference is who operates it. In a transcript-deletion editor you select the words to remove. In Valmera you state the outcome — "cut the dead air and every um, then punch in when I say the price" — and the agent performs it, renders a preview, and looks at the frames it produced. That covers the two limits above that hurt most in practice: an instruction scales the same whether the recording is four minutes or two hours, and it can express how as well as what, because zooms, grades, music and framing are tools the agent holds rather than characters in a document. Decisions are written to an edit decision list in source seconds, so a cut early in the video never invalidates a caption or a zoom placed after it, and the final render always comes from the original file at source quality.

The honest limits. Valmera has no document view whose deletions cut the footage — if what you want is to delete words in a transcript by hand, Descript is the tool built for that, and our side-by-side says so. Valmera's transcript panel is editable for corrections only: fix a misheard name and the captions re-render. Captions are burned into the video, with no SRT or VTT import or export. English is the best-tested transcription path. And the timings are model estimates carrying the boundary error described above — when a cut lands a beat late, the fix is to say so and have it moved, not to assume the number was ground truth.

Sources and Review Method

Product behavior was checked against first-party documentation on August 24, 2026. Historical and technical claims use the original research papers rather than affiliate roundups. Feature access can vary by plan, platform, language, and staged rollout, so follow the linked product documentation before choosing a workflow.

Related Terms

Other entries in the Valmera video editing glossary that touch this one:

  • Word-level timestamps The unit the whole workflow is built on. No per-word timing, no text-based editing.
  • Transcription and ASR Where the text comes from, and the error rate you inherit with it.
  • Edit decision list What a transcript deletion actually writes: source ranges, not pixels.
  • Silence detection The other index. Words say what survives; silence says where the join can hide.
  • Jump cut What a clean transcript edit looks like on the picture side when nothing covers it.
  • B-roll The standard fix for the visual discontinuity a text edit creates.
  • J-cut and L-cut Sound and picture cut at different moments — a thing a single text caret cannot express.
  • Burned-in captions vs subtitles The same transcript, used for display instead of for cutting.

Frequently Asked Questions

Text-based video editing is a workflow for cutting speech-driven video by editing a time-aligned transcript. Select, delete, copy, or rearrange words in the document and the editor applies the matching trim or move to the linked audio and video. It makes dialogue selection fast, but the transcript alone cannot describe silent shots, framing, color, music, or visual effects.
Yes, when the video contains speech. Editors such as Descript, Premiere Pro, DaVinci Resolve Studio, VEED, and CapCut can link transcript words to the matching media. Deleting a sentence removes that spoken range; some tools also let you copy, paste, or reorder passages. Visual-only work still needs timeline controls or an AI editor that can reason about frames.
It can mean two different workflows. Transcript editing means manipulating existing spoken words as a document. Prompt-based editing means typing an instruction such as 'remove the pauses and add captions' so an AI plans and performs operations. Text-to-video generation is a third category: it creates new footage rather than editing the uploaded recording.
AI video editing from a transcript uses the transcript as a searchable, timed index and lets a model choose edits from an instruction. A request such as 'keep the clearest answer about pricing and remove repeated takes' can resolve to source ranges without the user selecting every sentence. That is different from manual transcript editing, where the user chooses each deletion directly.
Four steps. First, an ASR model transcribes the audio and emits a start and end time for every word — typically on a 20 ms grid, since speech models analyse a 25 ms window every 10 ms and then halve that frame rate inside the encoder. Second, the editor builds a two-way index between character offsets in the text and time ranges in the source. Third, when you delete a text selection, the editor resolves it to the first surviving word's start and the last surviving word's end, snaps those edges outward to word boundaries, and records the surviving spans as a keep list in source seconds. Fourth, the picture is conformed: at render, source seconds are quantised to whole frames (33.3 ms at 30 fps) and the ranges are cut from the original file. Nothing is re-encoded until you export, which is why deleting a paragraph is instant on a two-hour recording.
Current options include Descript's script-first editor; Adobe Premiere Pro's Text-Based Editing workspace; DaVinci Resolve Studio's transcription tools; VEED's Edit by Script panel; and CapCut's transcript-based editing. Their operations differ: Descript and Premiere document moving or rearranging transcript selections, while VEED currently says moving a section by dragging transcript text is not supported. Valmera uses a transcript as an index for prompt-based editing rather than as a document whose deletions cut the video.
Four are structural, not implementation gaps. (1) It only addresses speech: silent b-roll, music, a demo with no narration and a reaction shot are all invisible to a transcript, because there is no text to select. (2) It only expresses what, never how — 'punch in here', 'grade this warmer', 'hold two beats longer' have no representation in a document of words. (3) Sound and picture share one caret, so a J-cut or L-cut, where the audio edit and the picture edit deliberately land at different moments, cannot be written as a text selection. (4) A word boundary is acoustically safe but not always a good edit: inside a phrase there is no silence between words, so splicing there joins two pitch contours mid-breath and sounds edited even though no audio was damaged. Good cuts land in pauses, which is why serious implementations pair the transcript with silence detection.
Not necessarily. Transcript editing describes an interface: the user selects words and the linked media follows. AI may create the transcript or power optional cleanup tools, but the user can still make every editorial decision. Agentic or prompt-based AI editing describes who plans the work: the model interprets an outcome and chooses operations. Modern products can combine both modes.
You can perform the operation, and the result is usually unusable without cover. Reordering text moves the corresponding source ranges, which means splicing two moments that were never adjacent — the speaker's head position, hand position, eyeline and expression change instantly at the join, and the viewer reads the discontinuity as a jump cut. Audio has the same problem in a subtler form: two sentences taken from different points in an answer carry different pitch and energy, so the join sounds wrong even when the picture is covered. This is exactly why b-roll, cutaways and reaction shots exist. A transcript reorder is one keystroke and a real edit; making it invisible is a separate piece of work the text view cannot do for you.
Valmera uses a word-timed transcript to locate edits requested in chat. Its transcript panel supports text corrections; deleting text there is not the same as deleting the corresponding video. Review cuts and captions against the audio because both transcription and timings can be wrong. Studio captions are burned in, with no SRT or VTT import or export.

Skip the Deleting

Valmera indexes your footage word by word, then edits it from a sentence you type. Account creation and uploads are free; a subscription is required to edit.

Create an account →
See pricing →

Related Articles

Text-Based Video Editing in Valmera
The product page: how typed instructions differ from deleting words in a document.
Valmera vs Descript
The transcript-deletion school head to head with the agent school.
Timeline & Transcript
The editable word-level transcript, the program timeline, and what each one is for.
Remove Filler Words
The job that exposes the scaling limit of manual transcript deletion most clearly.
Agentic Video Editor
The category where the transcript is an index the agent reads, not a document you operate.