This repository provides the necessary files and instructions to use the Sony PlayStation 5 HD Camera (Model CFI-ZEY1) on a Windows PC.
- 26/08/2024:
- If you experience dark/no video, try the PS5 Camera Tweaker by @PavlikBender: PavlikBender/PS5-Camera-Tweaker
- 08/05/2024:
- Added new firmware (
firmware_fix.bin
) to address dark video output issues. - Thanks to PavlikBender (report) and Макаров Алексей (firmware edit).
- See original discussion: psxdev/OrbisEyeCam Issue #10
- Added new firmware (
- 07/04/2022:
- Updated installer (
OV580 USB Camera updated.exe
) withlibusbk
v3.1.0 (upgraded from v3.0.7). Use this installer for new driver installations.
- Updated installer (
Prerequisites: Download the required files from this repository.
- Install Base Driver (if needed): If you haven't installed the PS4/PS5 camera driver before, run
OV580 USB Camera updated.exe
. If you have an older version installed, it's recommended to uninstall it first (see Uninstallation Instructions below). - Connect Camera: Plug in the PS5 HD Camera. Open Device Manager (right-click Start -> Device Manager). You should see
USB BOOT
listed underUniversal Serial Bus devices
. - Load Firmware: Ensure
OrbisEyeCameraFirmwareLoader.exe
is in the same directory as the desired firmware file (e.g.,firmware.bin
orfirmware_fix.bin
). RunOrbisEyeCameraFirmwareLoader.exe
. - Verify Installation: Check Device Manager again. The camera should now appear under
Cameras
asUSB Camera-OV580
.
Setup Complete. The camera should now be usable in most webcam applications.
Important: You must repeat Step 3 (running
OrbisEyeCameraFirmwareLoader.exe
) every time you disconnect and reconnect the camera to your PC, or after restarting your computer.
If you need to remove the driver completely, follow these methods. Administrator privileges are typically required.
This works if the driver registered an uninstaller.
- Open Settings: Press
Win
+I
(or right-click Start -> Settings). - Navigate to Apps:
- Windows 10: Go to Apps -> Apps & features.
- Windows 11: Go to Apps -> Installed apps.
- Search: Use the search bar to look for terms like
PS4 Camera
,PS5 Camera
,OV580
,USB Boot
, or the specific driver name. - Uninstall: If found, click the item (or its
...
menu) and select Uninstall. Follow prompts. - Restart: Reboot your PC to complete the removal.
If the driver isn't listed here, proceed to Method 2.
This method removes the driver directly from the hardware level.
- Open Device Manager: Right-click the Start button -> Device Manager.
- Locate Device: Find the camera under
Cameras
,Imaging devices
,Sound, video and game controllers
, orUniversal Serial Bus devices
(it might be listed asUSB Camera-OV580
,PS4/PS5 Camera
, orUSB BOOT
if firmware isn't loaded). - Uninstall: Right-click the device -> Uninstall device.
- Delete Driver Software: Crucially, in the confirmation dialog, check the box:
Delete the driver software for this device.
(Windows 10)Attempt to remove the driver software for this device.
(Windows 11)- Then click Uninstall.
- Restart: Reboot your PC.
Use this command-line tool for forceful driver package removal.
- Open Admin Command Prompt: Search
cmd
, right-click Command Prompt -> Run as administrator. - List Drivers: Execute
pnputil /enum-drivers
. - Identify Driver: Carefully review the output. Look for entries related to the camera (check "Provider Name", "Original Name" for keywords like
OV580
,Sony
, etc.). Note thePublished Name
(e.g.,oemXX.inf
). - Delete Driver: Execute the following, replacing
oemXX.inf
with the actual name found:pnputil /delete-driver oemXX.inf /uninstall /force
Warning: Ensure you have the correct
oemXX.inf
file. Deleting the wrong driver can cause system instability. - Restart: Reboot your PC.
This work builds upon the efforts of the following projects and individuals:
- OrbisEyeCam Project: psxdev/OrbisEyeCam
- ProsperoDev HD Camera: prosperodev/hdcamera
- Initial Findings & Discussion: PSXHax Thread
Special thanks to @psxdev and colleagues @frangar & @fjtrujy for their foundational work. Thanks also to @PavlikBender and @Lightbass for recent firmware contributions.