
What it does
Resolve 20.2 added Ripple Delete Silence to the Edit and Cut pages, and for a linked talking-head clip that is the shortest route. Dead Air is for the cases around it: reviewing the silences as markers before anything is cut, preparing a folder of raw captures before they go near a timeline, handing an ffmpeg command to a machine with no Resolve on it, and feeding Premiere or Final Cut the same decision.
It reads the container first. For MP4 and MOV it pulls the frame rate, the picture size and the start timecode from the tmcd track the way cameras and Resolve write it, reading only the box headers and the moov — so a 40 GB ProRes file costs kilobytes of I/O. Then the browser decodes the audio at 16 kHz, RMS loudness is measured in 10 ms windows with the loudest channel winning, and runs below the threshold that last at least the minimum are shrunk by a pre-head and a post-tail so no cut ever touches speech.
Every export comes off one set of frame-quantised keeps, so the EDL, the FCPXML and the ffmpeg command cut on identical frames. The cut list is a CMX3600 EDL whose source timecodes are offset by the clip's start TC, which is what lets Resolve link every event to the clip already in the bin.
It can also make the file. The Render panel demuxes with mediabunny, decodes with the browser's WebCodecs decoders, re-encodes with its H.264 and AAC encoders — hardware-accelerated where the machine has them — and muxes an MP4 on exactly the frames the EDL describes, streaming it to disk through the File System Access API so there is no size limit. A 77-second 1080p file took seven seconds on an M-series Mac. No ffmpeg build is downloaded; the trade is that the codecs are the browser's, so ProRes, DNx and MXF still go through the ffmpeg command.
- Cut-list EDL that Resolve imports as the ripple-deleted timeline, video and audio linked
- Marker EDL — a coloured span per silence, nothing cut, for a review-first pass
- FCPXML 1.10 with exact rational times, for Resolve, Premiere and Final Cut
- ffmpeg trim-and-concat command on the same frames, for cutting without an NLE
- Render the cut in the browser: WebCodecs decode and hardware H.264 + AAC encode, muxed to an MP4 that streams to disk as it goes
- Frame rate, picture size and start timecode read from the file's own timecode track
- Non-drop and drop-frame timecode at every broadcast rate
- Threshold, minimum silence, pre-head, post-tail, island swallowing and end trimming
- A loudness waveform with the threshold drawn across it, and a preview player that skips the silences
Where it stands
An early preview. The detector and the timecode arithmetic are covered by tests, and all three Resolve routes — the cut-list EDL, the marker EDL and the FCPXML — were imported into a running Resolve Studio 21.1 and read back frame-for-frame, on one synthetic 25p file. The browser render was verified end to end in headless Chromium on that file and on a 77-second 1080p H.264 file: exactly the kept frames, no silence left. Drop-frame output has been checked against the arithmetic only, never through Resolve, and Chromium is the only browser it has run in. Check every cut.