<?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.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 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>
