<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Youngchan</title>
    <description>The latest articles on DEV Community by Youngchan (@leeyc09).</description>
    <link>https://dev.to/leeyc09</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3853694%2F1eda99fa-65eb-475a-abff-16debe12c2f8.jpeg</url>
      <title>DEV Community: Youngchan</title>
      <link>https://dev.to/leeyc09</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/leeyc09"/>
    <language>en</language>
    <item>
      <title>I built a free macOS app that removes silence from videos and auto-generates subtitles</title>
      <dc:creator>Youngchan</dc:creator>
      <pubDate>Tue, 31 Mar 2026 14:40:03 +0000</pubDate>
      <link>https://dev.to/leeyc09/i-built-a-free-macos-app-that-removes-silence-from-videos-and-auto-generates-subtitles-52n3</link>
      <guid>https://dev.to/leeyc09/i-built-a-free-macos-app-that-removes-silence-from-videos-and-auto-generates-subtitles-52n3</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fny40tyai453vcqlcyus7.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fny40tyai453vcqlcyus7.jpg" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2cu11zao7yfa3uk2p1bt.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2cu11zao7yfa3uk2p1bt.jpg" alt=" "&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I edit travel vlogs in Final Cut Pro. The most tedious part was removing silence — scrubbing through hours of footage to cut dead air, frame by&lt;br&gt;
frame.&lt;/p&gt;

&lt;p&gt;I looked for tools to automate this, but they all split audio by fixed time windows. Words get chopped in half. "Restaur-" on one clip, "-ant" on&lt;br&gt;
the next.&lt;/p&gt;

&lt;p&gt;So I built &lt;strong&gt;Silenci&lt;/strong&gt; — a macOS app that removes silence and generates word-level subtitles without ever cutting mid-word.&lt;/p&gt;
&lt;h2&gt;
  
  
  How it works
&lt;/h2&gt;

&lt;p&gt;Most tools chop audio into chunks, run ASR on each chunk, and words get split at chunk boundaries.&lt;/p&gt;

&lt;p&gt;Silenci uses a &lt;strong&gt;2-pass approach&lt;/strong&gt;:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Pass 1:&lt;/strong&gt; Silero VAD detects speech → Qwen3-ASR transcribes → ForcedAligner produces word-level timestamps&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pass 2:&lt;/strong&gt; Split only at word &lt;code&gt;end_time&lt;/code&gt; boundaries → never cuts mid-word&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The output is an FCPXML file you import directly into Final Cut Pro — silence removed, subtitles already embedded.&lt;/p&gt;
&lt;h2&gt;
  
  
  Tech stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend:&lt;/strong&gt; SwiftUI native macOS app&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Backend:&lt;/strong&gt; Python subprocess (Silero VAD + Qwen3-ASR + ForcedAligner)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Communication:&lt;/strong&gt; JSON-RPC 2.0 over stdin/stdout pipes&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ML runtime:&lt;/strong&gt; MLX 8-bit quantized — optimized for Apple Silicon&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No cloud, no API keys&lt;/strong&gt; — everything runs locally on your Mac&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;
  
  
  Why Swift + Python?
&lt;/h2&gt;

&lt;p&gt;I wanted a native macOS feel (drag &amp;amp; drop, real-time preview) but the ML ecosystem lives in Python. Instead of FFI bindings, I used a separate&lt;br&gt;
Python process communicating via JSON-RPC.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
Swift App  →  {"method":"analyze", "params":{...}}     →  Python
Swift App  ←  {"method":"progress", "params":{"percent":45}}  ←  Python
Swift App  ←  {"result": {"segments":[...]}}            ←  Python

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;If the Python process crashes, the UI stays alive. Cancellation is instant — just kill the subprocess.&lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;🔇 Silence removal with Silero VAD&lt;/li&gt;
&lt;li&gt;🗣️ Word-level subtitles (Korean, English, Japanese, Chinese)&lt;/li&gt;
&lt;li&gt;✂️ Smart subtitle splitting at sentence endings and punctuation&lt;/li&gt;
&lt;li&gt;📤 Export FCPXML with inline iTT captions, SRT, iTT&lt;/li&gt;
&lt;li&gt;🔄 Import edited FCPXML back from FCP to re-transcribe subtitles&lt;/li&gt;
&lt;li&gt;🌐 In-app language selector (4 languages)&lt;/li&gt;
&lt;li&gt;💻 CLI for scripting and automation&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Auto-install
&lt;/h2&gt;

&lt;p&gt;On first launch, the app sets up a Python venv and installs all dependencies automatically. ASR models download on first analysis with progress&lt;br&gt;
tracking. No manual setup needed.&lt;/p&gt;

&lt;h2&gt;
  
  
  Output
&lt;/h2&gt;

&lt;p&gt;The FCPXML includes both title text overlays and iTT inline captions. Import into FCP and you get the silence-removed timeline with subtitles&lt;br&gt;
ready to edit.&lt;/p&gt;

&lt;h2&gt;
  
  
  Links
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href="https://github.com/leeyc09/Silence-Cutter" rel="noopener noreferrer"&gt;github.com/leeyc09/Silence-Cutter&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Download:&lt;/strong&gt; &lt;a href="https://github.com/leeyc09/Silence-Cutter/releases/tag/v0.4.0" rel="noopener noreferrer"&gt;v0.4.0 Release&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Requires macOS 14+, Apple Silicon (M1+). Free and open source under Apache 2.0.&lt;/p&gt;

&lt;p&gt;If you try it out, feedback is welcome. Bug reports, issues, and PRs are all appreciated.&lt;/p&gt;

</description>
      <category>opensource</category>
      <category>macos</category>
      <category>python</category>
      <category>swift</category>
    </item>
  </channel>
</rss>
