<?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: MrD</title>
    <description>The latest articles on DEV Community by MrD (@mrd999999).</description>
    <link>https://dev.to/mrd999999</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%2F3750819%2F0c373b3c-6ad0-4198-9cce-673ee19471e6.png</url>
      <title>DEV Community: MrD</title>
      <link>https://dev.to/mrd999999</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mrd999999"/>
    <language>en</language>
    <item>
      <title>You're Pronouncing Words Wrong — And That's Why You Can't Understand Native Speakers</title>
      <dc:creator>MrD</dc:creator>
      <pubDate>Wed, 11 Feb 2026 04:42:58 +0000</pubDate>
      <link>https://dev.to/mrd999999/youre-pronouncing-words-wrong-and-thats-why-you-cant-understand-native-speakers-5hb6</link>
      <guid>https://dev.to/mrd999999/youre-pronouncing-words-wrong-and-thats-why-you-cant-understand-native-speakers-5hb6</guid>
      <description>&lt;p&gt;Here's a frustrating scenario every language learner knows:&lt;/p&gt;

&lt;p&gt;You study a word. You memorize it. You use it in a sentence. But when a native speaker says it at normal speed — &lt;strong&gt;you don't recognize it.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Why? Because you learned the word with the &lt;strong&gt;wrong pronunciation&lt;/strong&gt;. Your brain stored a wrong sound model, so when the real sound arrives, it doesn't match.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Research confirms this&lt;/strong&gt;: pronunciation accuracy and listening comprehension are directly linked. If you can't produce the difference between "think" /θɪŋk/ and "sink" /sɪŋk/, you can't reliably hear it either.&lt;/p&gt;




&lt;h2&gt;
  
  
  How We Solved This in FluentCap
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://fluentcap.live" rel="noopener noreferrer"&gt;FluentCap&lt;/a&gt; is a free desktop app for real-time transcription &amp;amp; translation. We recently shipped two features specifically to fix the pronunciation-listening gap:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. IPA Lookup (Offline, 25+ Languages)
&lt;/h3&gt;

&lt;p&gt;Select any word from your live transcript → the &lt;a href="https://www.internationalphoneticassociation.org/" rel="noopener noreferrer"&gt;International Phonetic Alphabet&lt;/a&gt; transcription appears instantly.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fully offline — bundled dictionaries, no API calls&lt;/li&gt;
&lt;li&gt;Lazy-loaded per language to keep the app lightweight&lt;/li&gt;
&lt;li&gt;Shows exact phonetic symbols, not approximations&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Example: Select "together" → &lt;strong&gt;/tə'ɡɛðɚ/&lt;/strong&gt; appears at the top of the context menu.&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%2F2f2y2krkng1v6c8ueta5.png" 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%2F2f2y2krkng1v6c8ueta5.png" alt="FluentCap IPA Lookup" width="800" height="562"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Speak (Text-to-Speech)
&lt;/h3&gt;

&lt;p&gt;Right below the IPA, there's a &lt;strong&gt;Speak&lt;/strong&gt; button. One click and you hear the word pronounced correctly using the Web Speech API:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;const&lt;/span&gt; &lt;span class="nx"&gt;utterance&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="k"&gt;new&lt;/span&gt; &lt;span class="nc"&gt;SpeechSynthesisUtterance&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;selectedText&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;span class="nx"&gt;utterance&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;lang&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nx"&gt;detectedLanguage&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="nx"&gt;utterance&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;rate&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mf"&gt;0.9&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="c1"&gt;// Slightly slower for clarity&lt;/span&gt;
&lt;span class="nb"&gt;window&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nx"&gt;speechSynthesis&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;speak&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;utterance&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fjsurdhiw9ewx0z2tf3ej.png" 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%2Fjsurdhiw9ewx0z2tf3ej.png" alt="FluentCap Speak Feature" width="800" height="562"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The workflow&lt;/strong&gt;: Listen → see a word → select it → read IPA → click Speak → shadow the pronunciation. This creates a feedback loop that textbooks can't provide.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Works across 25+ languages&lt;/strong&gt; — English, Japanese, Korean, French, German, Vietnamese, Arabic, Chinese, and more.&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%2Fbm5r8ed92lf6qyug3c0m.png" 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%2Fbm5r8ed92lf6qyug3c0m.png" alt="IPA for Vietnamese" width="800" height="552"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Why This Matters
&lt;/h2&gt;

&lt;p&gt;The pronunciation → listening → understanding chain is real. Break the first link and everything downstream breaks. These two features close that gap by giving you both &lt;strong&gt;visual&lt;/strong&gt; (IPA) and &lt;strong&gt;auditory&lt;/strong&gt; (Speak) feedback in the flow of real content.&lt;/p&gt;

&lt;p&gt;📖 &lt;strong&gt;Full deep-dive article&lt;/strong&gt;: &lt;a href="https://fluentcap.live/blog/pronunciation-ipa-speak-language-learning/" rel="noopener noreferrer"&gt;How IPA and Speak Help You Master Pronunciation in Any Language&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🌐 &lt;strong&gt;Try FluentCap&lt;/strong&gt;: &lt;a href="https://fluentcap.live" rel="noopener noreferrer"&gt;https://fluentcap.live&lt;/a&gt; — Free, no subscription, available on macOS, Windows, and Linux.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Built to bring good things to the world.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>languagelearning</category>
      <category>javascript</category>
      <category>productivity</category>
    </item>
    <item>
      <title>I Built a Free Desktop App for Real-time Transcription &amp; Translation - Here's Everything It Can Do</title>
      <dc:creator>MrD</dc:creator>
      <pubDate>Thu, 05 Feb 2026 04:49:03 +0000</pubDate>
      <link>https://dev.to/mrd999999/i-built-a-free-desktop-app-for-real-time-transcription-translation-heres-everything-it-can-do-c65</link>
      <guid>https://dev.to/mrd999999/i-built-a-free-desktop-app-for-real-time-transcription-translation-heres-everything-it-can-do-c65</guid>
      <description>&lt;h2&gt;
  
  
  FluentCap: A Free Desktop App for Real-time Transcription &amp;amp; Translation
&lt;/h2&gt;

&lt;p&gt;Hi dev community!&lt;/p&gt;

&lt;p&gt;I'm excited to share &lt;strong&gt;FluentCap&lt;/strong&gt; - a desktop application I've been building to bring real-time transcription and translation to everyone. The core philosophy is simple: &lt;strong&gt;language should never be a barrier to understanding, learning, or connecting with others.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Check it out&lt;/strong&gt;: &lt;a href="https://fluentcap.live" rel="noopener noreferrer"&gt;https://fluentcap.live&lt;/a&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Download&lt;/strong&gt;: &lt;a href="https://fluentcap.live/download" rel="noopener noreferrer"&gt;https://fluentcap.live/download&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%2Fr5voi92idq32sygsomlp.png" 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%2Fr5voi92idq32sygsomlp.png" alt="Live Transcript" width="800" height="581"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Who Is FluentCap For?
&lt;/h2&gt;

&lt;p&gt;FluentCap is designed for anyone who works with audio in a different language:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Use Case&lt;/th&gt;
&lt;th&gt;How FluentCap Helps&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Language Learners&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Watch K-dramas, anime, foreign films with real-time bilingual subtitles&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Remote Workers&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Participate confidently in international meetings&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Deaf &amp;amp; Hard of Hearing&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Access real-time captions for any audio on your computer&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Researchers &amp;amp; Students&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Transcribe lectures, podcasts, interviews instantly&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Content Creators&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Generate transcripts for videos without expensive services&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h2&gt;
  
  
  Accessibility: Built for the Deaf &amp;amp; Hard of Hearing Community
&lt;/h2&gt;

&lt;p&gt;One of FluentCap's core missions is &lt;strong&gt;accessibility&lt;/strong&gt;. According to WHO, &lt;strong&gt;433 million people&lt;/strong&gt; worldwide experience disabling hearing loss, projected to reach &lt;strong&gt;2.5 billion by 2050&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How FluentCap helps:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Real-time captions for ANY audio&lt;/strong&gt; - not just specific apps like Zoom or Meet&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Works with system audio&lt;/strong&gt; - Netflix, YouTube, podcasts, lectures, video calls&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bilingual display&lt;/strong&gt; - see both original language and translation simultaneously&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Local processing&lt;/strong&gt; - your audio stays on your machine, privacy-first&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Research shows&lt;/strong&gt; real-time transcription increases engagement for deaf students by &lt;strong&gt;70-85%&lt;/strong&gt;, and &lt;strong&gt;98.6%&lt;/strong&gt; of students find captions helpful for focus and comprehension.&lt;/p&gt;

&lt;p&gt;FluentCap aims to make professional-grade captioning accessible to everyone at a fraction of the cost of traditional services (which can run &lt;strong&gt;$150+/hour&lt;/strong&gt; for professional captioners). With FluentCap's BYOK model, the same utility costs just &lt;strong&gt;$0.15-0.40/hour&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  The BYOK (Bring Your Own Key) Philosophy
&lt;/h2&gt;

&lt;p&gt;Unlike subscription apps that charge $15-30/month, FluentCap uses a &lt;strong&gt;transparent BYOK model&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;FluentCap is free forever&lt;/strong&gt; - no ads, no subscriptions&lt;/li&gt;
&lt;li&gt;You connect directly to speech-to-text providers using your own API keys&lt;/li&gt;
&lt;li&gt;Providers offer &lt;strong&gt;hundreds of hours free&lt;/strong&gt; to get started:&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Provider&lt;/th&gt;
&lt;th&gt;Free Credits&lt;/th&gt;
&lt;th&gt;~Free Hours&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Deepgram&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;$200&lt;/td&gt;
&lt;td&gt;~750 hours&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;AssemblyAI&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;$50&lt;/td&gt;
&lt;td&gt;~140 hours&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Gladia&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;10 hrs/month&lt;/td&gt;
&lt;td&gt;Unlimited (monthly reset)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Shunya&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;$100&lt;/td&gt;
&lt;td&gt;~300 hours&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;When free credits run out, you pay providers directly at wholesale rates: &lt;strong&gt;$0.15-0.40/hour&lt;/strong&gt; (60-80% cheaper than subscription apps).&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%2F4h57cl7dxxkizpt141u9.png" 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%2F4h57cl7dxxkizpt141u9.png" alt="Pick Provider" width="800" height="581"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Feature Highlights
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Audio Recording &amp;amp; Synchronized Playback
&lt;/h3&gt;

&lt;p&gt;One of the newest features! FluentCap can:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Record audio&lt;/strong&gt; during transcription sessions (MP3 format)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Merge recording bursts&lt;/strong&gt; into a single continuous file&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Play back&lt;/strong&gt; with full synchronization to the transcript&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;The 5-Pillar Interaction Model:&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;Automatic Recording&lt;/strong&gt; - Audio captured as MP3 in real-time&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Integrated Playback&lt;/strong&gt; - Play/Pause, Seek, Download controls&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Click-to-Seek&lt;/strong&gt; - Click any transcript line and audio jumps there&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Jump Navigation&lt;/strong&gt; - Next/Previous highlight buttons&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Bidirectional Sync&lt;/strong&gt; - Audio playback auto-highlights &amp;amp; scrolls transcript&lt;/li&gt;
&lt;/ol&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%2Fz1os4008u40himkmb12h.png" 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%2Fz1os4008u40himkmb12h.png" alt="Audio Sync Playback" width="800" height="713"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  2. Highlight &amp;amp; Annotation System
&lt;/h3&gt;

&lt;p&gt;FluentCap isn't just for passive viewing - it's an &lt;strong&gt;active learning tool&lt;/strong&gt;:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Select any text&lt;/strong&gt; - Instant highlight via context menu&lt;/li&gt;
&lt;/ul&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%2Fw9wf8bz3v35tnuvcpq5w.png" 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%2Fw9wf8bz3v35tnuvcpq5w.png" alt="Highlight Context Menu" width="800" height="717"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Live Auto-Highlight Mode&lt;/strong&gt; - Highlights apply immediately during recording (no menu clicks needed!)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Easy removal&lt;/strong&gt; - Hovering over any highlight reveals a remove button&lt;/p&gt;&lt;/li&gt;
&lt;/ul&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%2F1dh32qidw9wyz4mu5g1r.png" 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%2F1dh32qidw9wyz4mu5g1r.png" alt="Highlight Remove" width="800" height="717"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Cross-session Gallery&lt;/strong&gt; - View all highlights from all sessions in one sidebar tab&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Click-to-Navigate&lt;/strong&gt; - Jump directly from highlight card to the exact position in transcript + audio&lt;/li&gt;
&lt;/ul&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%2Fnw03l12efg659meday6o.png" 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%2Fnw03l12efg659meday6o.png" alt="Highlight Collection" width="800" height="717"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  3. Bidirectional Sync
&lt;/h3&gt;

&lt;p&gt;When audio plays:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;The current segment is &lt;strong&gt;highlighted&lt;/strong&gt; with a subtle flash animation&lt;/li&gt;
&lt;li&gt;Both source &amp;amp; translated lists &lt;strong&gt;auto-scroll&lt;/strong&gt; to keep the active segment centered&lt;/li&gt;
&lt;li&gt;Clicking any transcript line &lt;strong&gt;seeks audio&lt;/strong&gt; without changing play/pause state&lt;/li&gt;
&lt;/ol&gt;




&lt;h3&gt;
  
  
  4. Multiple Layout Modes
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Mode&lt;/th&gt;
&lt;th&gt;Description&lt;/th&gt;
&lt;th&gt;Best For&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Movie Mode&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Large text, transparent overlay&lt;/td&gt;
&lt;td&gt;Watching films&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Meeting Notes&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Visible sidebar, high opacity&lt;/td&gt;
&lt;td&gt;Work calls&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Side-by-Side&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Vertical comparison view&lt;/td&gt;
&lt;td&gt;Language learning&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;




&lt;h3&gt;
  
  
  5. Multi-Source Audio Capture
&lt;/h3&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Audio Source&lt;/th&gt;
&lt;th&gt;Use Case&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;System Audio&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Netflix, YouTube, Podcasts&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Microphone&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Dictation, Note-taking&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Both&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;Video calls (hear everyone)&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&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%2Fim7q30124yru4hjj5txh.png" 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%2Fim7q30124yru4hjj5txh.png" alt="Settings - Audio Source &amp;amp; Provider" width="800" height="581"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h3&gt;
  
  
  6. Customizable Themes
&lt;/h3&gt;

&lt;p&gt;FluentCap offers multiple themes to match your preference and reduce eye strain during long sessions.&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%2Fd41n61nm0yzqkdf6rjls.png" 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%2Fd41n61nm0yzqkdf6rjls.png" alt="Settings - Theme" width="800" height="581"&gt;&lt;/a&gt;&lt;/p&gt;




&lt;h2&gt;
  
  
  Privacy-First Architecture
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Local storage only&lt;/strong&gt; - all sessions saved on your machine&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Direct API calls&lt;/strong&gt; - audio goes straight to providers, no intermediate servers&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;No tracking&lt;/strong&gt; - your data stays yours&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Technical Stack
&lt;/h2&gt;

&lt;p&gt;For the devs interested in the architecture:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Framework&lt;/strong&gt;: Electron + React + TypeScript&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Audio Processing&lt;/strong&gt;: FFmpeg (via &lt;code&gt;ffmpeg-static&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Storage&lt;/strong&gt;: JSON-based local persistence&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Virtualization&lt;/strong&gt;: &lt;code&gt;react-window&lt;/code&gt; for smooth transcript scrolling&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;STT Providers&lt;/strong&gt;: Deepgram, AssemblyAI, Gladia, Shunya&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Thank You to Our Providers
&lt;/h2&gt;

&lt;p&gt;FluentCap exists because of the amazing speech-to-text providers who make their technology accessible:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Deepgram&lt;/strong&gt; - Lightning-fast Nova-3 model&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;AssemblyAI&lt;/strong&gt; - Excellent accuracy and features&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Gladia&lt;/strong&gt; - Generous monthly free tier&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Shunya&lt;/strong&gt; - Budget-friendly rates&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When your free credits run out, please consider supporting them. Their pricing is incredibly fair — just &lt;strong&gt;$0.15-0.40 per hour&lt;/strong&gt;, and they deserve recognition for democratizing this technology.&lt;/p&gt;




&lt;h2&gt;
  
  
  Try It Out
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Website&lt;/strong&gt;: &lt;a href="https://fluentcap.live" rel="noopener noreferrer"&gt;https://fluentcap.live&lt;/a&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Download&lt;/strong&gt;: &lt;a href="https://fluentcap.live/download" rel="noopener noreferrer"&gt;https://fluentcap.live/download&lt;/a&gt;&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Blog&lt;/strong&gt;: &lt;a href="https://fluentcap.live/blog" rel="noopener noreferrer"&gt;https://fluentcap.live/blog&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Available for &lt;strong&gt;macOS&lt;/strong&gt;, &lt;strong&gt;Windows&lt;/strong&gt;, and &lt;strong&gt;Linux&lt;/strong&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  Looking for Feedback
&lt;/h2&gt;

&lt;p&gt;I'd love to hear from the community:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;What features would make this more useful for your workflow?&lt;/li&gt;
&lt;li&gt;Any accessibility improvements you'd suggest?&lt;/li&gt;
&lt;li&gt;Feedback on the BYOK model?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Drop a comment below or reach out through the website. Built to bring good things to the world.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;— FluentCap Team&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;A world without language barriers.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>productivity</category>
    </item>
  </channel>
</rss>
