Install OBS Background Removal on Windows

  1. Download the Plugin:
    Click here to download the latest Windows version (ZIP)
  2. Extract the ZIP File:
    Right-click the downloaded ZIP file and select Extract All...
  3. Copy Files to OBS Directory:
    Move the extracted files into your OBS Studio installation folder.
    C:\Program Files\obs-studio
  4. Restart OBS Studio:
    Close OBS Studio if it's running, then open it again.
  5. Usage:
    See the usage page for how to use the plugin.

Optional: Install using PowerShell

Note: You must run PowerShell as Administrator to copy files into the OBS Studio directory.

You can automate installation with PowerShell:

$zipUrl = "{assetX64.browser_download_url}"
$zipPath = "$env:TEMPobs-backgroundremoval-windows-x64.zip"
$extractPath = "$env:TEMPobs-backgroundremoval"
$obsPath = "C:Program Filesobs-studio"

Invoke-WebRequest -Uri $zipUrl -OutFile $zipPath
Expand-Archive -Path $zipPath -DestinationPath $extractPath -Force
Copy-Item -Path "$extractPath*" -Destination $obsPath -Recurse -Force
Remove-Item $zipPath
Remove-Item $extractPath -Recurse

All set!

Back to the top page