Cut Silence From
Your Videos — Automatically

Upload a video, and our AI detects and removes awkward pauses, dead air, and silence. Download a polished cut in minutes. No editing skills needed.

30%
Avg. Time Saved
3x
Faster than Realtime
99%
Uptime

Everything You Need

AI Silence Detection

Automatically detect pauses using advanced audio analysis. Our AI finds the optimal threshold for your content.

Visual Timeline Editor

See your cuts on a waveform timeline before committing. Fine-tune thresholds and preview results instantly.

Audio Enhancement

Optional broadcast-quality processing: noise removal, compression, EQ, and loudness normalization.

Export High Quality

Download your polished video in full quality MP4. Stream copy mode for near-instant exports.

REST API Access

Integrate silence removal into your workflow with our API. Automate batch processing for entire channels.

Private & Secure

Your videos are encrypted, processed, and deleted automatically. We never store your content.

How It Works

1

Upload Your Video

Drag and drop any MP4, MOV, or WEBM file into the editor.

2

AI Analyzes Audio

Our engine scans the audio waveform and identifies every silence region.

3

Download Your Cut

Review the timeline, tweak if needed, and export your polished video.

Simple, Fair Pricing

Start free, upgrade when you need more minutes.

Free

$0/mo
10 minutes included
  • Web Editor Access
  • API Access
  • AI Auto-Threshold
  • 100MB Upload Limit
Get Started

Pro

$29/mo
3000 minutes included
  • Everything in Starter
  • Priority Email Support
Subscribe

Developer API

Already have our API key? Use it programmatically. Find your key in the Dashboard.

# 1. Submit video for processing import requests url = "https://promptcut.tech/process" headers = {"X-API-Key": "YOUR_API_KEY"} files = {"file": open("raw_podcast.mp4", "rb")} data = {"threshold_db": -35.0, "min_silence_duration": 0.4} response = requests.post(url, headers=headers, files=files, data=data) job_id = response.json()["job_id"] # 2. Download when ready # GET https://promptcut.tech/jobs/{job_id}/download