AI Video & Audio Editor

Cut Dead Air.
Keep Every Moment.

PromptCut uses AI to detect and remove awkward silences from your videos and podcasts instantly. Upload, analyze, export — no editing experience needed.

promptcut.tech/editor
PromptCut | Dashboard
PRO 3.3 / 10 min
A
Original Media
00:32.9
openai.com
0:32 / 0:32
Processing Settings
Import
Detect
Cut
Silence Threshold
−23.5 dB
Auto Calc
Volume ceiling for silence
Min Silence
0.3s
Edge Pad
0.03s
Studio Enhancement
Detect Silences
Process Media
Credits deducted on export
Final Output
Export
0:26 / 0:26
00:25.8
17 Cuts
Saved 7.1s (21%)
30%
Avg. Time Saved
Faster than Realtime
99%
Uptime
Features

Everything You Need

From detection to export, every tool is built for speed without sacrificing quality.

AI Silence Detection

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

Visual Timeline Editor

See your cuts on a live waveform before committing. Fine-tune thresholds, preview results instantly, and drag-adjust regions.

Studio Audio Enhancement

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

High Quality Export

Download processed media in full-quality. Stream copy mode means near-instant exports without re-encoding.

REST API Access

Integrate silence removal into your own pipeline. Automate batch processing for entire YouTube channels or podcast feeds.

Private & Secure

Media files are encrypted in transit, processed in isolated containers, and deleted automatically. We never store your content.

Before & After

Watch Silences Disappear

The waveform shows exactly where silences are detected and removed in real time.

Audio Sequence
17 cuts detected 21% shorter Analysis complete
Original audio track 0:32.9
After cut — silences removed 0:25.8 · saved 7.1s
How It Works

Three Steps to Done

No timeline scrubbing. No frame-by-frame editing. Just results.

1

Upload Your Media

Drag and drop any MP4, MOV, WEBM, MP3, or WAV file. Up to 2GB on Pro. Processing begins immediately.

2

AI Analyzes Audio

Our engine scans every millisecond of the waveform, identifying silence regions and suggesting an optimal threshold.

3

Export the Cut

Review the timeline, tweak if needed, and download your polished file. Stream copy keeps it near-instant.

Pricing

Simple, Fair Pricing

Start free. Upgrade when you need more minutes.

Free
Try it out with no commitment.
$0/mo
10 minutes included
  • Web Editor Access
  • AI Auto-Threshold
  • 50MB Upload Limit
Get Started
Pro
For power users and teams.
$29/mo
3000 minutes included
  • Everything in Starter
  • REST API Access
  • 2GB Upload Limit
  • Priority Email Support
Subscribe
FAQ

Common Questions

Everything you need to know about PromptCut's AI silence removal.

How accurate is the AI silence detection?

PromptCut uses advanced audio analysis that differentiates between actual speech and background noise. It's highly optimized for podcasts, lectures, and talking-head videos, ensuring no words are accidentally clipped.

Which media file formats are supported?

We currently support MP4, MOV, WEBM, MP3, and WAV formats. For the best video experience, we recommend using H.264 encoded MP4 files.

Is my data safe and private?

Yes. Media files are processed in isolated, secure containers and encrypted in transit. Your files are automatically deleted from our servers within 48 hours of processing. We never watch or store your content.

Is there a limit on file size?

Yes, limits depend on your plan: Free users can upload up to 50MB, Starter users 300MB, and Pro users up to 2GB per file.

Can I use PromptCut for audio-only podcasts?

Absolutely! While we focus on video, PromptCut works perfectly for audio-only files too. Simply upload your audio, and our AI will strip the dead air just as effectively.
Developer API

Automate Your
Entire Pipeline

Integrate silence removal directly in your own workflow via REST API. Batch-process entire channels overnight. Available exclusively on the Pro plan.

Upgrade to Pro Dashboard
silence_cut.py
# PromptCut Developer API — Full Example import requests, time API_KEY = "your_api_key_here" url = "https://promptcut.tech" # 1. Submit media for processing with open("podcast.mp3", "rb") as f: res = requests.post(f"{url}/process", headers={"X-API-Key": API_KEY}, files={"file": f}, data={"threshold_db": -35.0, "min_silence_duration": 0.4}) job_id = res.json()["job_id"] # 2. Poll until done while True: status = requests.get(f"{url}/jobs/{job_id}", headers={"X-API-Key": API_KEY}).json() if status["status"] == "done": break time.sleep(2) # 3. Export (deducts credits), then download requests.post(f"{url}/jobs/{job_id}/export", headers={"X-API-Key": API_KEY}) data = requests.get(f"{url}/jobs/{job_id}/download", headers={"X-API-Key": API_KEY}) with open("output.mp4", "wb") as f: f.write(data.content)