← Blog

I Cancelled a $100/Year Webcam App — and the Free Replacement Looks Better

OBS Studio showing a screen recording with a webcam overlay — the Sources panel lists two layers, Video Capture Device and Display Capture, and the preview shows a cleanly cut-out person with no background box floating over a browser window, CPU usage 3.9%
Contents

If you sell anything online, you eventually need this exact video: your screen, with your face in the corner. Product demos. Onboarding walkthroughs. “Here’s what I’d fix on your website” videos that close deals.

I was paying about $100 CAD a year for a tool that did this. It also crashed regularly — usually mid-recording, which is the worst possible moment, because you don’t find out until you’ve already delivered the punchline.

This week I replaced it with free software that produces a better picture. Here’s the whole path, including the part where the free option looked bad and I nearly gave up on it.

The idea that makes this click: it’s layers

OBS Studio is free, open-source, and runs on Windows, Mac, and Linux. Most people file it under “software for Twitch streamers” and stop reading. That’s a mistake, and it’s costing entrepreneurs real money.

The entire mental model:

  • A Scene is your document — like a Canva design or a Photoshop file.
  • A Source is a layer inside it. Your screen is a layer. Your webcam is a layer. Your logo is a layer.
  • Layers stack. Whatever sits higher draws on top.
  • You drag and resize each one with your mouse, exactly like you’d expect.

The screenshot at the top of this post is exactly that, and it’s worth a second look. The Sources panel on the left holds precisely two layers: Video Capture Device — me — and Display Capture — my screen. In the preview, that’s my screen showing this very article, with my head and shoulders cut out and floating over it. No box.

Once you see it as a layered document that happens to be live, it stops being intimidating. And because they’re layers, you get things a simple screen recorder can’t do: multiple scenes you switch between mid-recording, your logo on all of them, a different background behind you.

The setup, in five minutes

  1. Install OBS Studio and skip the auto-configuration wizard — you don’t need it.
  2. In the Sources panel, click +Display Capture. That’s your screen.
  3. Click + again → Video Capture Device. That’s your webcam, landing on top.
  4. Drag the webcam layer’s handles to shrink it and park it in a corner. Hold Alt while dragging an edge to crop.
  5. Hit Start Recording.

You now have what I was paying for. No watermark, no account, no upload limit, and the file lands on your own hard drive.

The part that looks unprofessional

The webcam-in-the-corner shot has one problem, and it’s what paid tools charge for: the box.

A raw webcam layer is a rectangle containing your face — and also your kitchen, your laundry, and whatever your family is doing behind you. It reads as amateur immediately.

What you want is your head and shoulders cut out cleanly, floating over your slides. That’s background removal: a green screen without the green screen. OBS doesn’t do it out of the box; you add a plugin. This is where my week got interesting.

Attempt one: free, easy, disappointingly fuzzy

I started with Live Background Removal Lite — free, actively maintained, installs by dropping a folder into C:\ProgramData\obs-studio\plugins (a .pkg on Mac).

It worked immediately. It also looked soft: a fuzzy halo around my head, like I’d been cut out with blunt scissors. Watchable, but not client-facing.

My instinct was to assume “free software, free-software quality” and go shopping for another subscription. That instinct was wrong, and it’s the expensive one.

How I diagnosed it instead of guessing

I run Claude Code on my machine — an AI assistant that can read files and run commands on the computer, not just chat about them. (Here’s how I run several at once.) That distinction is the whole point of this section.

I described the problem in plain English: the edges are feathery, can we do better?

Instead of recommending something, it read my OBS log file. Two findings came back, and I’d have found neither on my own.

One — I had picked the blurry setting. The plugin has a “Filter Level” I’d never touched, sitting at level 500, “Time-Averaged Filter.” The plugin’s own docs describe level 400 as the one that “produces the sharpest mask.” I was running the softest preset available and blaming the software.

Two — the real ceiling. The plugin calculates its cutout at 256×144 pixels, then stretches that up to fill a 1080p frame. Think of tracing your outline on a Post-it note, then blowing the Post-it up to poster size. Every slightly-wrong pixel becomes thirty wrong pixels. That was the fuzz, and no slider fixes it.

That’s not a knock on the plugin — it’s a deliberate trade, built to be gentle on your CPU so it won’t hurt your framerate while gaming. I wasn’t gaming.

The transferable lesson: don’t ask an AI “what’s the best X?” and go shopping. Ask it to look at your setup and tell you what’s actually wrong. The answer to “why does my video look bad” sat in a log file on my own hard drive the whole time. It’s the same evidence-first approach I use for debugging — find the cause before choosing the cure.

Want hands-on help with AI tools?

I run AI workshops and 1-on-1 Zoom coaching sessions covering Claude Code, BMAD multi-agent systems, and practical AI workflows — shaped around where you actually are, not a fixed curriculum.

Work with me →
1-on-1 coaching with Paul

Attempt two: a better model

Next was OBS Background Removal, which ships six AI models instead of one. The one that matters is Robust Video Matting — it produces a true soft-edge cutout that handles hair, glasses arms and the gaps between your fingers, rather than stamping out a rough silhouette.

Same installation, and it has the sliders the first plugin lacked — the one named “Feather blend silhouette” is literally your fuzziness dial. Turn it near zero and the edge tightens.

Honest caveat: on Windows this one runs on your CPU. Fine for a demo recording; you’ll feel it if you’re also running something heavy.

Good enough to ship. But there was one more thing.

Attempt three: the free upgrade already installed

Buried in my OBS log was a line I’d have scrolled straight past:

[NVIDIA VIDEO FX]: FX disabled, redistributable not found or could not be loaded.

Translated: OBS already contains a professional-grade background remover from NVIDIA. It ships with the program. It was on my machine, switched off, because one free support file was missing. A disabled feature simply doesn’t appear in the menu — no upgrade prompt, no greyed-out button, nothing.

If you have an NVIDIA RTX graphics card — common in any laptop bought for video, gaming or design in the last few years — you likely have this too, switched off. The missing piece is the Video Effects runtime from NVIDIA’s Broadcast SDK page.

The quality difference comes down to one number:

Cutout resolutionRuns on
Live Background Removal Lite256 × 144CPU
NVIDIA Video Effects288 × 512Graphics card

Roughly four times the detail, on the graphics card instead of the processor. Look at the bottom-right of the screenshot at the top of this post: CPU 3.9%, holding a steady 30 frames per second. Live AI background removal for four percent of one processor, because the real work happens on a chip that was sitting idle in my laptop.

The security detour worth copying

Before running NVIDIA’s installer, Claude Code checked its digital signature — the cryptographic proof a file came from who it claims. The check failed, and it refused to run.

It turned out NVIDIA signs these particular developer downloads with an internal certificate no computer is set up to trust, so verification can’t succeed on anybody’s machine. Not a bad download — a quirk of how NVIDIA ships this file.

But we only knew that because we checked, then dug into the specific reason. Before installing, we confirmed the file came from nvidia.com over a verified connection, the size matched exactly, the link came off NVIDIA’s own page, and a full Defender scan was clean. Then I approved it. (If you ship fast with AI, the rest of that security stack is worth your time too.)

The unflattering bit, because it’s the real lesson: the AI’s first version of that check was too aggressive and deleted the 775 MB download. We re-fetched it and rewrote the check to quarantine files rather than destroy them. AI assistants are enormously useful and they get things wrong in ways you need to see. Ask yours to show its work — “why did that fail, specifically?” — and make the final call yourself.

What it cost

BeforeAfter
SoftwarePaid webcam appOBS Studio + free plugin
Cost~$100 CAD/year$0
CrashesRegular, mid-recordingNone so far
Edge qualityFineBetter

About $100 a year back, permanently — $500 over five years, for software that also stopped interrupting my work.

Do this yourself

Baseline, any computer: install OBS, add Display Capture, add Video Capture Device, shrink the webcam into a corner. Five minutes, and it replaces most paid screen recorders.

Add a clean cutout: install OBS Background Removal, set the model to Robust Video Matting, turn “Feather blend silhouette” low. Windows, Mac and Linux, no special hardware.

If you have an NVIDIA RTX card: add a filter to your webcam source and look for “NVIDIA Background Removal.” If it’s missing, the Video Effects runtime is the piece you need.

One trap: don’t stack two background removers on the same source. Two cutouts compound each other’s mistakes — it looks worse. Pick one, delete the other.

The broader point

The best option was already installed on my computer, switched off, mentioned once in a log file I had no reason to open.

That’s the normal condition of modern software. We’re all running tools with capabilities nobody told us about, while paying monthly for something adjacent. It’s the same thing I keep finding across the AI tools I actually use and my video experiments — the capability is usually there before the awareness is.

The skill worth developing isn’t “knowing the best tools.” It’s pointing something at your own machine and asking what’s already here, and why isn’t it working? — then being stubborn enough to ask “why, specifically?” one more time than feels necessary.

That’s what saved me the hundred dollars. The software was free the whole time.


Paying for software that keeps letting you down? That’s a lot of what I do — here’s what working together looks like, or get in touch.

Comments

Loading comments…

Leave a comment

Want to work together?

If something here resonated, let's talk. I help teams build AI systems and automate workflows.