<?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: PawmelMeller</title>
    <description>The latest articles on DEV Community by PawmelMeller (@pawmelmeller).</description>
    <link>https://dev.to/pawmelmeller</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4018402%2Fcddbf33c-7df8-4b6d-8845-10ba69b372d2.png</url>
      <title>DEV Community: PawmelMeller</title>
      <link>https://dev.to/pawmelmeller</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pawmelmeller"/>
    <language>en</language>
    <item>
      <title>Turning long podcasts, meetings and videos into usable notes — for free</title>
      <dc:creator>PawmelMeller</dc:creator>
      <pubDate>Mon, 06 Jul 2026 21:35:49 +0000</pubDate>
      <link>https://dev.to/pawmelmeller/turning-long-podcasts-meetings-and-videos-into-usable-notes-for-free-595k</link>
      <guid>https://dev.to/pawmelmeller/turning-long-podcasts-meetings-and-videos-into-usable-notes-for-free-595k</guid>
      <description>&lt;p&gt;A 90-minute podcast or a recorded meeting is a wall of audio. The useful part — the three decisions, the one quote, the action items — is buried in it. Re-listening at 1.5x is not a workflow. Here's the free flow I use instead.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Get the transcript
&lt;/h2&gt;

&lt;p&gt;Paste the link (or upload the file) and let it transcribe the whole thing — no 15-minute cap. Works for a &lt;a href="https://longscribe.com/podcast-transcription" rel="noopener noreferrer"&gt;podcast episode&lt;/a&gt;, a &lt;a href="https://longscribe.com/meeting-transcription" rel="noopener noreferrer"&gt;recorded meeting&lt;/a&gt;, or any &lt;a href="https://longscribe.com/video-to-text" rel="noopener noreferrer"&gt;video turned into text&lt;/a&gt;.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Skim by timestamp, not by ear
&lt;/h2&gt;

&lt;p&gt;Every segment keeps its timestamp, so you jump straight to "minute 34" instead of scrubbing. Reading is roughly 5x faster than listening.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. Pull the notes out
&lt;/h2&gt;

&lt;p&gt;Copy the passages that matter into show notes, meeting minutes, or a study summary. Because it's text, you can Ctrl+F for a name or a number.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Keep the source format if you need it
&lt;/h2&gt;

&lt;p&gt;Export &lt;code&gt;.srt&lt;/code&gt; if you're subtitling, &lt;code&gt;.docx&lt;/code&gt; if you're handing it to someone, or just grab the plain text. Got an &lt;a href="https://longscribe.com/mp3-to-text" rel="noopener noreferrer"&gt;MP3 you need as text&lt;/a&gt;? Same flow.&lt;/p&gt;

&lt;p&gt;No signup, no cap, no paid tier — &lt;a href="https://longscribe.com" rel="noopener noreferrer"&gt;longscribe.com&lt;/a&gt;. The whole point was to make "I'll just read it later" actually possible.&lt;/p&gt;

</description>
      <category>productivity</category>
      <category>tutorial</category>
      <category>ai</category>
      <category>writing</category>
    </item>
    <item>
      <title>Lessons from building a free transcription tool that actually handles long videos</title>
      <dc:creator>PawmelMeller</dc:creator>
      <pubDate>Mon, 06 Jul 2026 21:31:16 +0000</pubDate>
      <link>https://dev.to/pawmelmeller/lessons-from-building-a-free-transcription-tool-that-actually-handles-long-videos-3g41</link>
      <guid>https://dev.to/pawmelmeller/lessons-from-building-a-free-transcription-tool-that-actually-handles-long-videos-3g41</guid>
      <description>&lt;p&gt;Most free transcription tools quietly cap you at ~15 minutes, or hold your transcript hostage behind a signup. I wanted the opposite: paste a link to a two-hour podcast or a full lecture and just get the text — free, no account. That became &lt;a href="https://longscribe.com" rel="noopener noreferrer"&gt;Longscribe&lt;/a&gt;. Here's what turned out to be harder than expected.&lt;/p&gt;

&lt;h2&gt;
  
  
  1. Long audio breaks the naive approach
&lt;/h2&gt;

&lt;p&gt;Feeding a 2-hour file straight into Whisper is a great way to time out. The fix was chunking on silence boundaries, transcribing chunks with bounded retries, and stitching timestamps back together so the final &lt;a href="https://longscribe.com/generate-srt-subtitles" rel="noopener noreferrer"&gt;SRT subtitles&lt;/a&gt; still line up.&lt;/p&gt;

&lt;h2&gt;
  
  
  2. Captions-first beats brute force
&lt;/h2&gt;

&lt;p&gt;For &lt;a href="https://longscribe.com/youtube-transcription" rel="noopener noreferrer"&gt;YouTube transcription&lt;/a&gt;, downloading and transcribing audio is the expensive path. If a video already has captions, use them — it's faster, cheaper, and far kinder to rate limits. Only fall back to audio + Whisper when there genuinely are none.&lt;/p&gt;

&lt;h2&gt;
  
  
  3. "Free" means every request has to be cheap
&lt;/h2&gt;

&lt;p&gt;No paid APIs anywhere. Jobs run on a background queue so you can close the tab and get an email when it's done, instead of holding a browser connection open for 40 minutes.&lt;/p&gt;

&lt;h2&gt;
  
  
  4. Export formats are the actual product
&lt;/h2&gt;

&lt;p&gt;People don't want a text blob — they want timestamped segments, &lt;code&gt;.srt&lt;/code&gt; subtitles, and a &lt;code&gt;.docx&lt;/code&gt; they can hand to someone. That last mile mattered more than the model.&lt;/p&gt;

&lt;p&gt;It's live and free at &lt;a href="https://longscribe.com" rel="noopener noreferrer"&gt;longscribe.com&lt;/a&gt; if you want to throw a long recording at it.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>python</category>
      <category>ai</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
