Modern video surveillance systems have long ceased to be the preserve of specialized security companies and have become an accessible element smart homeThe popularity of wireless IP cameras of the brand Yoosee This is due to their accessibility and ease of initial setup via a mobile app. However, when it comes to more serious monitoring or the need to archive video directly to a computer's hard drive, users often encounter difficulties when trying to display the image on a large laptop or desktop screen.
The main difficulty is that these devices are designed from the ground up as P2P devices operating through the manufacturer's cloud servers, rather than as traditional network cameras with direct access via a local IP address. For full integration into a computer network, it's necessary to understand the operating principles of the protocols. ONVIF And RTSP, which allow you to stream video directly, bypassing mobile software limitations. In this article, we'll cover all setup steps, from preparing your router to choosing specialized viewing software.
It's important to note that the stability of the entire system directly depends on the quality of the wireless signal. If the laptop and camera are located far apart, or there are many concrete walls between them, video stream delays and connection interruptions are possible. Therefore, before beginning the software setup, make sure your WiFi router is working properly and the camera is in a strong signal reception area.
Preparing equipment and setting up the network
The first and most critical step is to ensure that all devices are on the same local network. Camera Yoosee and your laptop must be connected to the same router. It's important to consider the frequency range: most models of these cameras operate exclusively in the 2.4 GHz and don't see the network 5 GHzIf your router broadcasts a single network (Smart Connect), you may experience problems with initial pairing.
To avoid addressing conflicts, it is strongly recommended to configure a static IP address for the camera or reserve an address based on the MAC address in the router interface. Dynamic address change (DHCP) will cause the software on your computer to stop finding the device after a while, as the path to it will change. Go to your router settings and find the "Settings" section. DHCP Server or Address Reservation and assign an address to your video surveillance device.
⚠️ Attention: Router interfaces from different manufacturers (Keenetic, TP-Link, Asus, Mikrotik) may vary. If you're unsure about setting up a static IP, consult the official documentation for your router model to avoid disrupting your entire home network.
It's also worth checking your Windows firewall settings. The operating system's built-in protection often blocks incoming connections from unknown devices, considering them potentially dangerous. You may need to create an exception rule for the ports used by the camera or temporarily disable the firewall for diagnostic purposes.
Finding the IP address of a camera on a local network
Once the camera is connected to WiFi and working, you need to find out its current IP address. Mobile app Yoosee often hides this information deep in the menu or doesn't show it at all, relying on the cloud ID. For a computer, however, knowledge of the local address (for example, 192.168.1.45) is key.
The most reliable way to find a device is to use specialized network scanners. The program Advanced IP Scanner or utility ONVIF Device Manager (ODM) will instantly scan your network segment and list all active devices. Look for the manufacturer in the list, often marked as Shenzhen XiongMai or simply by the MAC address, which can be found on the sticker on the camera body.
If using third-party software is not possible, you can use built-in Windows tools. Open the command prompt and enter the command arp -aYou'll get a list of all devices your computer has communicated with. Look for the address that matches the camera's MAC address. You can also access the router's web interface, in the "Connect to" section. Client list or Client List, where all connected gadgets are displayed.
- 🔍 Advanced IP Scanner — a fast and free utility for scanning the network, no installation required.
- 🎥 ONVIF Device Manager — a professional tool that will not only find a camera but also display its RTSP stream.
- 🌐 Router web interface — the easiest way that does not require installing additional software on your PC.
Using the official CMS client for PC
The manufacturer provides its own software for computers called Yoosee CMS (Client Management System). This is the simplest option for users who don't want to understand the intricacies of network protocols. The program allows you to record on a schedule or directly to your laptop's hard drive when motion is detected.
After installing and launching the program, you need to log in. There's an important caveat here: logging into the CMS client on a PC often requires the mobile app to be configured and linked to your account. In the authorization window, select the login mode by UID (device serial number) or by account if the cloud access function is activated in the camera settings via the phone.
In the program interface, add the device by entering its UID and the password you set when you first activated the camera. If the password hasn't changed, try the default combinations; these are often 123 Or an empty string, but for security reasons, it's best to set a unique code. Once added, the "Online" status will appear in the device list, and you'll be able to stream.
⚠️ Attention: The official Yoosee desktop client may be unstable on Windows 10 and 11 operating systems. If the program crashes or fails to launch, try running it as an administrator or in Windows 7 compatibility mode.
The main advantage of this method is its simplicity. The main limitation is its dependence on the manufacturer's servers. If the cloud service is unavailable or the camera loses internet connection, local viewing via LAN may not work, as the CMS client often attempts to route the stream through an external network, even if the devices are in the same room.
☑️ Setting up a CMS client
Connection via ONVIF protocol and third-party software
For more advanced users and those who need stability, it is preferable to use universal video surveillance programs that work on the protocol ONVIFThis standard allows connecting cameras from different manufacturers to a single control center. Popular solutions: iSpy, VLC Media Player, Blue Iris or Xeoma.
Before connecting, you need to activate ONVIF support in the camera's settings. This is done through the mobile app: go to the device's settings and find the item Computer network or Network Settings, and turn on the switch ONVIFHere you will be asked to create or enter a password for the user. adminRemember this password—it will be used to log in from your computer.
In your PC's video surveillance program, select to add a new camera using the ONVIF protocol. Enter the local IP address you found earlier, the port (default 80 or 8080), login admin and the password specified in the previous step. If the information is correct, you will receive a video stream with minimal latency and without impacting the cloud servers.
| Parameter | Default value | Where to change |
|---|---|---|
| Protocol | ONVIF / RTSP | Yoosee mobile app |
| HTTP port | 80 | Network settings in the app |
| RTSP port | 554 | Network settings in the app |
| Login | admin | Unchangeable system login |
| Password | 123 (or yours) | ONVIF section in settings |
Using third-party software gives you flexibility in setting up motion detection, sensitivity, and archive storage options. You're not tied to a single vendor's ecosystem and can integrate Yoosee cameras with devices from other brands into a unified security system.
What to do if ONVIF does not work?
Often, the problem stems from an incorrect system time. Go to the camera settings and set the current date and time, then sync them with the network. The ONVIF protocol requires matching timestamps for authorization.
Direct access via RTSP links in VLC player
If you don't need a recording system, but just a quick view of the image, the easiest way is to use a media player VLCIt can open network streams directly. To do this, you need to create a special link containing the camera's address, port, and authorization data.
The RTSP link format for Yoosee cameras typically looks like this: rtsp://admin:PASSWORD@IP_ADDRESS:554/onvif1. Instead of PASSWORD substitute the password you set for ONVIF, and instead of IP_ADDRESS — the camera's local IP. Please note that in some models the stream path may differ, for example, ending in /h264_stream or /live.
Open VLC, click Media → Open URL and paste the generated string. If all the data is entered correctly, a window with the video stream will open in a few seconds. This method is advantageous for its lightweight nature—it places virtually no load on the laptop's processor, unlike heavy CMS clients.
- 🚀 Instant start - no need to wait for the video surveillance program interface to load.
- 💻 Cross-platform — the method works equally well on Windows, Linux, and macOS.
- 🔒 Security - you do not transfer data through third-party cloud servers.
However, this method has a drawback: VLC can't archive video based on a schedule or motion detection without complex scripting. This solution is strictly for ad hoc monitoring.
Troubleshooting and diagnostics
During setup, users often encounter typical errors. One of the most common is "Connection Error" or a black screen with working audio. This often indicates a codec issue. The camera can broadcast video in H.265, which an old computer or player cannot decode.
In this case, you need to go to the camera settings (via the web interface or application) and change the video stream codec to H.264This will reduce the processor load during decoding and improve compatibility with older software. It's also worth reducing the bitrate or resolution if the WiFi channel is limited.
Another common issue is time desynchronization. The camera may show video, but archiving isn't happening, or the timestamps are incorrect. Be sure to adjust this. NTP server in the camera's network settings so that it automatically takes the exact time from the Internet.
⚠️ Attention: If connection drops frequently, check the WiFi signal strength where the camera is installed. If the signal strength is below -70 dBm, stable operation will be unavailable. Consider using a WiFi repeater or switching the camera to a wired connection if the model supports Ethernet.
If nothing helps, try resetting the camera to factory settings by holding down the button Reset on the case. After that, set it up again, paying special attention to the section on creating a password for the PC client.
Frequently Asked Questions (FAQ)
Is it possible to connect a Yoosee camera to a laptop without internet access, only via a local network?
Yes, this is possible. After the initial setup via the mobile app (which requires internet access), you can disable the internet connection on your router. The camera and laptop, when on the same WiFi network, will communicate directly via the local IP address using the ONVIF or RTSP protocol. However, push notifications to your phone will not work.
What password should I use to log in through the CMS client?
This isn't your WiFi password or your Yoosee account password. It's a device-specific password that you should have set in the mobile app under "Device Settings" → "PC Password" or something similar. If you haven't changed it, try the defaults: 123, 123456, or leave it blank.
Why is the camera not visible in the network scanning program?
Make sure your laptop and camera are connected to the same subnet (e.g., 192.168.1.x). If you have a dual-band router, check if clients are isolated from each other (AP Isolation). Also, temporarily disable your antivirus and Windows Firewall to test.
Does Yoosee support scheduled recording on a computer?
Yes, but only with specialized software. The official CMS client supports scheduled recording and motion detection. When using VLC player, automatic recording is not possible without complex settings.