How to Download Whop Videos on Windows (Free Step-by-Step Guide)
Downloading Whop videos on Windows works well, but there's one common stumbling block: Windows Defender SmartScreen. The first time you install the helper app that merges Whop's video and audio streams, SmartScreen may flag it as an unknown publisher. It's safe — but you have to know to click past the warning rather than canceling the install.
This guide covers everything: installing the extension, handling SmartScreen, doing your first download, and a terminal fallback for anyone who wants no weekly limits.
What you need
- Windows 10 or Windows 11
- Chrome, Brave, or Opera (Edge support is coming; Firefox is not currently supported on Windows)
- Logged-in access to the Whop video you want to save
How it works technically (so nothing surprises you)
Whop hosts all its course videos through Mux, a streaming infrastructure platform. Mux doesn't serve one MP4 file — it serves an HLS stream, which means your browser is pulling dozens of small encrypted video chunks and dozens of small encrypted audio chunks, stitching them together on the fly. There's no download button because there's no single file.
The browser extension watches for these Mux stream requests in the background, reads what quality tiers are available, and when you click Download, it fetches those streams separately and hands them to the helper app to merge into a clean MP4. That merge step is why the helper app exists — browser extensions can't write and join binary files without a native helper.
Step-by-step: downloading on Windows
Step 1 — Install the extension
Go to the Chrome Web Store and install the free Whop Downloader. Pin the extension to your toolbar (click the puzzle icon in Chrome, find Whop Downloader, click the pin). Having it visible saves you time.
Step 2 — Install the helper app (and handle SmartScreen)
Click the extension icon. The first time, it will prompt you to download and install the helper app.
Run the installer. Windows Defender SmartScreen may show a blue dialog saying "Windows protected your PC" — this happens with any software that doesn't yet have a large enough download history for Microsoft to auto-trust. Click "More info", then "Run anyway". The app installs normally after that.
If your IT policy blocks running unsigned apps entirely, the yt-dlp method at the bottom of this guide works without any installer.
Step 3 — Open the Whop video and press play
Navigate to the Whop course lesson you want to download. Start playback — just press play and let it run for a second or two. This is the step most people miss: Mux's stream URLs are only generated when the player actually requests them. Before you press play, those URLs don't exist in the page, so the extension has nothing to read.
Step 4 — Scan and select quality
Click the extension icon. The popup should show the video with a list of available qualities, typically from 360p up to 1080p. If nothing appears, hit Rescan — this happens when you open the extension before the stream has started loading.
Step 5 — Download and wait
Pick your quality, click Download, and leave the Whop tab open. The progress bar in the extension popup tracks the fetch and the merge. Once the merge finishes, the MP4 saves to your Windows Downloads folder, named automatically after the video's title.
For most 1080p videos, this takes a minute or two — much faster than real-time because the extension is fetching stream data, not recording playback.
Running multiple downloads at once
The free tier supports up to 3 simultaneous downloads. Open a second Whop lesson in a new tab, press play, rescan, and add it to the queue while the first is still downloading. You can queue up to three at a time, each with its own progress bar. Files land in your Downloads folder already named and organized.
Pro removes the weekly cap and runs up to 5 simultaneous downloads at 5× faster speeds — useful if you're archiving a large course.
Common Windows-specific issues
"Windows Defender blocked the helper app install." Click "More info" → "Run anyway" in the SmartScreen dialog. This is a one-time prompt.
"The extension says 'helper not connected' after installing." Close Chrome completely (check the system tray — Chrome may still run in the background even when the window is closed) and reopen it. The extension reconnects to the helper app on startup.
"The download shows 100% but no file appears in Downloads." Your Windows Downloads folder might be redirected by OneDrive to a cloud-only path. Check C:\Users\YourName\Downloads directly in File Explorer rather than the Downloads shortcut.
"The helper app installed but the extension still shows a setup prompt." Restart Chrome and try clicking the extension icon again. If the prompt persists, uninstall and reinstall the helper app from the extension's setup screen.
"The video plays fine on Whop but quality options show as 360p only." The creator uploaded at a lower resolution — what you see in the extension matches what actually exists, not what Whop's player auto-selects.
Method 2: yt-dlp from PowerShell (no weekly caps)
For unlimited downloads without a GUI:
Install yt-dlp via winget:
winget install yt-dlp.yt-dlp
winget install Gyan.FFmpeg
Download a Whop video using cookies from Chrome:
yt-dlp --cookies-from-browser chrome "WHOP_VIDEO_URL"
Replace WHOP_VIDEO_URL with the URL of the Whop page that contains the video. yt-dlp will find the Mux stream, download the best available quality, and merge it into an MP4. FFmpeg handles the merge step (same job as the helper app in the extension).
This method is free, unlimited, and works on Windows 10 and 11. It requires some comfort with PowerShell and troubleshooting, but it's the most powerful option if you're pulling a full course library.