You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Silero VAD neural silence detection as alternative to energy threshold,
with auto mode that tries AI first then falls back. CrisperWhisper
verbatim filler word detection via HuggingFace transformers for far
more accurate um/uh identification. Robust Video Matting backend for
temporally consistent background removal. Florence-2 auto watermark
region detection. Emotion-based highlight extraction via deepface facial
expression analysis. Engagement scoring blends hook strength, emotional
peak, pacing, and quotability with LLM scores. OpenTimelineIO export
for universal NLE interchange (Resolve, Avid, FCP). Improved thumbnail
scoring with composition balance and motion blur penalty. UXP panel
gains project media browsing and AbortSignal polyfill. Frontend adds
detection method selectors, scan debouncing, and capability cache reset.
> A free, open-source Premiere Pro extension that brings AI-powered video editing automation, caption generation, audio processing, and visual effects -- all running locally on your machine. No subscriptions, no cloud, no API keys. Replaces the need for paid Premiere extensions.
11
11
@@ -20,7 +20,7 @@
20
20
21
21
**Option A -- Installer exe (recommended):**
22
22
23
-
Download `OpenCut-Setup-1.8.0.exe` from [Releases](https://github.com/SysAdminDoc/OpenCut/releases) and run it. The installer handles everything: server exe, FFmpeg, CEP extension deployment, registry keys, desktop shortcut, and optional Whisper model download. **No Python or FFmpeg needed.**
23
+
Download `OpenCut-Setup-1.9.0.exe` from [Releases](https://github.com/SysAdminDoc/OpenCut/releases) and run it. The installer handles everything: server exe, FFmpeg, CEP extension deployment, registry keys, desktop shortcut, and optional Whisper model download. **No Python or FFmpeg needed.**
24
24
25
25
**Option B -- From source (requires Python 3.9+ and [FFmpeg](https://ffmpeg.org/download.html) on PATH):**
26
26
@@ -47,14 +47,14 @@ Clone the repo and run `Install.bat` as Administrator. It handles FFmpeg check,
47
47
48
48
## Features
49
49
50
-
OpenCut v1.8.0 includes **142+ API routes**, **8 panel tabs** with **50+ sub-tabs**, and covers every major video editing automation task — with workflow automation, project templates, i18n, Docker support, SQLite job persistence, 10 themes, keyboard shortcuts, and a UXP panel for Premiere Pro 25.6+.
50
+
OpenCut v1.9.0 includes **148+ API routes**, **8 panel tabs** with **50+ sub-tabs**, and covers every major video editing automation task — with Silero VAD, CrisperWhisper filler detection, Robust Video Matting, emotion-based highlights, OpenTimelineIO export, Florence-2 watermark detection, and a UXP panel for Premiere Pro 25.6+.
51
51
52
52
### Cut & Clean
53
53
54
54
| Feature | Description | Engine |
55
55
|---------|-------------|--------|
56
-
| Silence Removal | Detect and remove silent segments with adjustable threshold | FFmpeg / VAD |
57
-
| Filler Word Detection | Auto-detect and cut um, uh, like, you know, so, actually| WhisperX |
56
+
| Silence Removal | Detect and remove silent segments. Three methods: energy threshold (classic), Silero VAD (neural AI), or auto (tries AI first) | FFmpeg / Silero VAD |
57
+
| Filler Word Detection | Auto-detect and cut um, uh, like, you know, so, actually. Two backends: Whisper (fast) or CrisperWhisper (verbatim, most accurate) | WhisperX / CrisperWhisper|
58
58
| Waveform Preview | Visual waveform with draggable threshold line synced to slider | FFmpeg PCM + Canvas |
59
59
| Trim Tool | Set in/out points to extract a clip portion (stream copy or re-encode) | FFmpeg |
60
60
| Full Pipeline | Combined silence + filler removal in one pass | Multi-stage |
@@ -115,21 +115,23 @@ OpenCut v1.8.0 includes **142+ API routes**, **8 panel tabs** with **50+ sub-tab
115
115
| Auto-Crop Detect | Smart reframe anchor using cropdetect for talking-head content | FFmpeg cropdetect |
| Watermark Removal | Remove logos via delogo or LaMA AI inpainting| FFmpeg / LaMA |
118
+
| Watermark Removal | Remove logos via delogo or LaMA AI inpainting. Auto-detect watermark region with Florence-2 vision model | FFmpeg / LaMA / Florence-2|
119
119
| Color Match | Match the color profile of one clip to a reference clip using YCbCr histogram matching | OpenCV |
| Background Removal | Remove video backgrounds|rembg (U2-Net)|
126
+
| Background Removal | Remove video backgrounds. Two backends: rembg (per-frame, more models) or Robust Video Matting (temporal consistency) | rembg / RVM|
127
127
| Face Enhancement | Restore/upscale faces | GFPGAN |
128
128
| Face Swap | Replace faces with reference image | InsightFace |
129
129
| Style Transfer | Neural artistic style transfer | PyTorch models |
130
-
| Auto Thumbnails | AI-scored frame extraction for thumbnails| OpenCV scoring |
130
+
| Auto Thumbnails | AI-scored frame extraction with composition balance, center interest, and motion blur penalty| OpenCV scoring |
131
131
| Auto Zoom Keyframes | Face-detected push-in zoom for talking-head content. Returns keyframes for the Premiere Pro Motion effect | OpenCV + ExtendScript |
132
132
| Multicam Auto-Switching | Speaker diarization → camera cut list. Maps speakers to track indices and generates multicam edits | pyannote.audio + ExtendScript |
133
+
| Emotion Highlights | Detect emotionally significant moments via facial expression analysis. Builds emotion curve to find peaks | deepface + OpenCV |
0 commit comments