Install OBS Background Removal on Windows
- Download the Plugin:
Click here to download the latest Windows version (ZIP) - Extract the ZIP File:
Right-click the downloaded ZIP file and select Extract All... - Copy Files to OBS Directory:
Move the extracted files into your OBS Studio installation folder.
C:\Program Files\obs-studio - Restart OBS Studio:
Close OBS Studio if it's running, then open it again. - 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!