<?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: Rebell Yell</title>
    <description>The latest articles on DEV Community by Rebell Yell (@indignity).</description>
    <link>https://dev.to/indignity</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%2F3875655%2Fe14a6d48-113b-4d9d-8efb-fa0b7e5b43b6.png</url>
      <title>DEV Community: Rebell Yell</title>
      <link>https://dev.to/indignity</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/indignity"/>
    <language>en</language>
    <item>
      <title>I rebuilt my Windows video downloader from scratch — yt-dlp + FFmpeg + PyInstaller, 1,700 downloads later</title>
      <dc:creator>Rebell Yell</dc:creator>
      <pubDate>Fri, 10 Jul 2026 19:01:14 +0000</pubDate>
      <link>https://dev.to/indignity/i-rebuilt-my-windows-video-downloader-from-scratch-yt-dlp-ffmpeg-pyinstaller-1700-downloads-1f0l</link>
      <guid>https://dev.to/indignity/i-rebuilt-my-windows-video-downloader-from-scratch-yt-dlp-ffmpeg-pyinstaller-1700-downloads-1f0l</guid>
      <description>&lt;p&gt;Three months ago I posted here about Grabbit, a desktop video downloader I built for Windows. The app has grown a lot since then — new engine, local file converter, batch mode, transcript extraction — so I wanted to write a proper update with the actual technical details.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Grabbit does (2026 edition)
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;&lt;a href="https://appgrabbit.com" rel="noopener noreferrer"&gt;Grabbit&lt;/a&gt;&lt;/strong&gt; is a Windows 10/11 desktop app that downloads videos from 8+ platforms — YouTube, TikTok, Instagram, Facebook, Twitter/X, Pinterest, Twitch, SoundCloud — up to 4K quality. Everything runs locally. No cloud, no account required, no file upload anywhere.&lt;/p&gt;

&lt;p&gt;It also ships with a &lt;strong&gt;local FFmpeg converter&lt;/strong&gt; (Pro) that converts between video and image formats entirely on your machine.&lt;/p&gt;

&lt;p&gt;Supported downloads: &lt;a href="https://appgrabbit.com/youtube-to-mp3/" rel="noopener noreferrer"&gt;YouTube to MP3&lt;/a&gt;, &lt;a href="https://appgrabbit.com/tiktok-video-downloader/" rel="noopener noreferrer"&gt;TikTok&lt;/a&gt;, &lt;a href="https://appgrabbit.com/instagram-video-downloader/" rel="noopener noreferrer"&gt;Instagram Reels&lt;/a&gt;, &lt;a href="https://appgrabbit.com/pinterest-video-downloader/" rel="noopener noreferrer"&gt;Pinterest&lt;/a&gt;, &lt;a href="https://appgrabbit.com/youtube-shorts-downloader/" rel="noopener noreferrer"&gt;YouTube Shorts&lt;/a&gt;, &lt;a href="https://appgrabbit.com/soundcloud-downloader/" rel="noopener noreferrer"&gt;SoundCloud&lt;/a&gt;, and more.&lt;/p&gt;

&lt;p&gt;Supported conversions: &lt;a href="https://appgrabbit.com/video-to-mp3/" rel="noopener noreferrer"&gt;Video → MP3&lt;/a&gt;, &lt;a href="https://appgrabbit.com/webm-to-mp4/" rel="noopener noreferrer"&gt;WebM → MP4&lt;/a&gt;, &lt;a href="https://appgrabbit.com/heic-to-jpg/" rel="noopener noreferrer"&gt;HEIC → JPG&lt;/a&gt;, &lt;a href="https://appgrabbit.com/webp-to-jpg/" rel="noopener noreferrer"&gt;WebP → JPG&lt;/a&gt;, &lt;a href="https://appgrabbit.com/video-to-prores/" rel="noopener noreferrer"&gt;Video → ProRes HQ&lt;/a&gt;, &lt;a href="https://appgrabbit.com/video-to-dnxhr/" rel="noopener noreferrer"&gt;Video → DNxHR HQ&lt;/a&gt;.&lt;/p&gt;




&lt;h2&gt;
  
  
  The stack (unchanged from v1, for a reason)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Backend:      Python + Flask + yt-dlp + FFmpeg
Frontend:     Vanilla JS (no framework)
Auth/DB:      Supabase (PostgreSQL + Edge Functions)
Payments:     Stripe → Supabase Edge Function → Resend
Installer:    PyInstaller + Inno Setup
Distribution: GitHub Releases (auto-update via version check)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;I kept the same stack because it works. The temptation to rewrite in Electron or Tauri was real but I resisted it. Adding complexity wouldn't have shipped any of the features below.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's new: the FFmpeg Converter
&lt;/h2&gt;

&lt;p&gt;The biggest addition since April is the local Converter. Users can drop a local file (MP4, MKV, AVI, MOV, WebM, HEIC, WebP) and convert it to another format — entirely on their machine. No upload, no size limit.&lt;/p&gt;

&lt;p&gt;The trickiest part: &lt;strong&gt;bundling FFmpeg and pillow-heif with PyInstaller&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;For FFmpeg I use &lt;code&gt;imageio-ffmpeg&lt;/code&gt; which ships its own binary:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;imageio_ffmpeg&lt;/span&gt;
&lt;span class="n"&gt;ffmpeg_path&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;imageio_ffmpeg&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;get_ffmpeg_exe&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;This gives you a reliable path whether you're running from source or from a frozen PyInstaller bundle. No &lt;code&gt;which ffmpeg&lt;/code&gt; nonsense, no PATH issues on Windows.&lt;/p&gt;

&lt;p&gt;For HEIC support (&lt;code&gt;pillow-heif&lt;/code&gt;), PyInstaller doesn't collect the native DLLs automatically. You need to force it in the &lt;code&gt;.spec&lt;/code&gt; file:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="c1"&gt;# grabbit.spec
&lt;/span&gt;&lt;span class="kn"&gt;from&lt;/span&gt; &lt;span class="n"&gt;PyInstaller.utils.hooks&lt;/span&gt; &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;collect_all&lt;/span&gt;
&lt;span class="n"&gt;datas_heif&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;binaries_heif&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;hiddenimports_heif&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nf"&gt;collect_all&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;pillow_heif&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Without that, HEIC conversion silently fails at runtime on the packaged exe — no error, just nothing happens. Took an embarrassing amount of time to debug.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's new: Batch mode
&lt;/h2&gt;

&lt;p&gt;Pro users can paste up to &lt;strong&gt;50 URLs at once&lt;/strong&gt; — one per line — and Grabbit queues them all. The implementation is straightforward but the UX took iteration: users need to know which URLs failed and why, without it feeling like a wall of errors.&lt;/p&gt;

&lt;p&gt;I ended up with a per-URL status row that shows &lt;code&gt;queued → downloading → done/error&lt;/code&gt; in real time. The progress streaming still holds — polling every 600ms against a lightweight endpoint works well enough that I haven't needed WebSockets.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's new: Transcript mode
&lt;/h2&gt;

&lt;p&gt;Grabbit can extract transcripts from YouTube videos — useful for summarizing, repurposing content, or accessibility. It uses yt-dlp's subtitle extraction under the hood:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;ydl_opts&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;writesubtitles&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="bp"&gt;True&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;writeautomaticsub&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="bp"&gt;True&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
    &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;subtitleslangs&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;en&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;
    &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;skip_download&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="bp"&gt;True&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Auto-generated captions aren't perfect but for most YouTube content they're good enough for summarization use cases.&lt;/p&gt;




&lt;h2&gt;
  
  
  What's new: self-updating yt-dlp
&lt;/h2&gt;

&lt;p&gt;yt-dlp breaks constantly as platforms change their APIs. Rather than shipping a new app version every time, Grabbit updates yt-dlp silently in the background on launch:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;subprocess&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;sys&lt;/span&gt;

&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;update_ytdlp&lt;/span&gt;&lt;span class="p"&gt;():&lt;/span&gt;
    &lt;span class="n"&gt;subprocess&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;run&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
        &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;sys&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;executable&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;-m&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;pip&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;install&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;--upgrade&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="s"&gt;yt-dlp&lt;/span&gt;&lt;span class="sh"&gt;'&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;
        &lt;span class="n"&gt;capture_output&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="bp"&gt;True&lt;/span&gt;
    &lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;When frozen with PyInstaller, &lt;code&gt;sys.executable&lt;/code&gt; points to the bundled Python — so pip updates the bundled yt-dlp, not a system one. This means users always have a working downloader even when a platform changes something overnight.&lt;/p&gt;




&lt;h2&gt;
  
  
  Numbers after 3 months
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;1,700+ installs&lt;/strong&gt; via GitHub Releases&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Top countries:&lt;/strong&gt; Mexico, US, Peru, Spain, Argentina, Colombia&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Top traffic sources:&lt;/strong&gt; Direct, Google Organic, ChatGPT referral&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Free plan:&lt;/strong&gt; 10 single downloads, 1 batch (up to 10 links), 2 transcripts&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Pro:&lt;/strong&gt; $8.99/month or $59.99/year — unlimited downloads, batch up to 50, all converter formats&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The LATAM tilt was unexpected but makes sense in hindsight — there's a real gap for a clean Spanish-language download tool. I shipped 19 new SEO landing pages in Spanish last week targeting that.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I'd do differently
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Ship the Chrome Extension earlier.&lt;/strong&gt; The extension puts a one-click Grab button directly on video pages while you're watching. It's one of the highest-retention features and I waited too long to build it.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Don't fight PyInstaller — embrace the spec file.&lt;/strong&gt; I spent weeks trying to make things work without touching the &lt;code&gt;.spec&lt;/code&gt;. The right answer is always: open the spec, add what you need, move on.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Ignore the "just use Electron" advice.&lt;/strong&gt; Flask + Vanilla JS served from localhost is genuinely fine for a tool like this. The bundle is smaller, startup is faster, and I understand every line of it.&lt;/p&gt;




&lt;p&gt;If you're building something similar — local desktop tool, Python backend, freemium model — happy to answer questions in the comments.&lt;/p&gt;

&lt;p&gt;If you want to try it: &lt;a href="https://appgrabbit.com" rel="noopener noreferrer"&gt;appgrabbit.com&lt;/a&gt; — Windows only, free plan available, no account required.&lt;/p&gt;

</description>
      <category>showdev</category>
      <category>python</category>
      <category>ffmpeg</category>
      <category>windows</category>
    </item>
    <item>
      <title>I built a free desktop video downloader for Windows — Grabbit</title>
      <dc:creator>Rebell Yell</dc:creator>
      <pubDate>Mon, 13 Apr 2026 00:40:24 +0000</pubDate>
      <link>https://dev.to/indignity/i-built-a-free-desktop-video-downloader-for-windows-grabbit-3knc</link>
      <guid>https://dev.to/indignity/i-built-a-free-desktop-video-downloader-for-windows-grabbit-3knc</guid>
      <description>&lt;p&gt;I've been wanting to download videos from YouTube and TikTok for a long time, but every solution I found was either a sketchy website full of ads, a command-line tool that non-technical users couldn't use, or a bloated app that required an account and uploaded your files to a cloud server.&lt;br&gt;
So I built my own.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What it does&lt;/strong&gt;&lt;br&gt;
Grabbit is a desktop app for Windows that downloads videos from YouTube, TikTok, Instagram, Facebook, Twitter, Pinterest, Twitch and SoundCloud — up to 4K/8K quality. It runs a local Flask server and opens in your browser, so the UI is just a web page served from localhost:5000. No Electron, no heavy framework. Just Python and Vanilla JS.&lt;br&gt;
It also has a Chrome Extension that puts a Grab button directly on video pages. While you're watching a video, click Grab — it gets added to a download queue in real time. No copying links, no switching tabs.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How I built it&lt;/strong&gt;&lt;br&gt;
The stack is simple on purpose:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Backend:&lt;/strong&gt; Python + Flask + yt-dlp + ffmpeg&lt;br&gt;
&lt;strong&gt;Frontend:&lt;/strong&gt; Vanilla JS SPA (no React, no Vue)&lt;br&gt;
&lt;strong&gt;License system:&lt;/strong&gt; Supabase (PostgreSQL + Edge Functions)&lt;br&gt;
&lt;strong&gt;Payments:&lt;/strong&gt; Stripe webhooks → Supabase Edge Function → Resend email&lt;br&gt;
&lt;strong&gt;Installer:&lt;/strong&gt; PyInstaller + Inno Setup&lt;br&gt;
&lt;strong&gt;Distribution:&lt;/strong&gt; GitHub Releases&lt;/p&gt;

&lt;p&gt;The trickiest part was getting the download progress to stream in real time. yt-dlp outputs progress line by line, so I parse each line with regex and push it to a polling endpoint the frontend checks every 600ms. Not the most elegant solution but it works reliably.&lt;br&gt;
Another challenge was packaging with PyInstaller. When frozen, &lt;strong&gt;file&lt;/strong&gt; points inside the bundle temp directory, not where the exe lives. So I had to detect sys.frozen and use sys.executable to find the actual working directory. Took me longer than I'd like to admit.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What I learned&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Building a freemium desktop app from scratch taught me a lot about things I'd never dealt with before — code signing certificates, Windows Smart App Control, subprocess encoding issues on Windows (cp1252 vs utf-8), auto-update architecture without breaking user data, and how to structure a license system that works offline when Supabase is unreachable.&lt;br&gt;
The most important thing I learned: ship early. The first version was rough. But shipping it gave me real feedback and the motivation to keep going.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Where it is now&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Grabbit is live. Free plan with 5 downloads/day. Pro plan at $8.99/month or $59.99/year for unlimited downloads, 4K/8K, all platforms, segment download and premium themes.&lt;/p&gt;

&lt;p&gt;If you're curious: appgrabbit.com&lt;/p&gt;

&lt;p&gt;Happy to answer any questions about the stack or implementation details.&lt;br&gt;
If you try it, let me know what you think — feedback is welcome.&lt;/p&gt;

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