EseeCloud Smart Home Integration β Alexa, Google Home & Home Assistant
eseecloud cameras can connect to popular smart home platforms, including Amazon Alexa (via an official Skill) and Home Assistant (via community methods using RTSP or ONVIF). This guide covers the official support status, setup steps for each platform, and what to do when native support is limited.
Smart Home Support Overview
Before diving into setup steps, here is a quick overview of what each platform actually offers for eseecloud cameras:
| Platform | Official Support | Method |
|---|---|---|
| Amazon Alexa | β Official Skill available | Enable "EseeCloud" Alexa Skill |
| Google Home / Assistant | β οΈ Limited | Check Google Home device list; no standalone Action confirmed |
| Home Assistant | β οΈ Community method | RTSP stream via go2rtc or ONVIF integration |
Note: Smart home integration support can vary by camera model. Newer cameras and NVR kits are more likely to support RTSP and ONVIF than older standalone cameras.
Amazon Alexa Integration (Official)
eseecloud has an official Alexa Skill listed on the Amazon Alexa Skills store. Once enabled, you can use voice commands to pull up a live stream on any Alexa-enabled display device (Echo Show, Fire TV, etc.).
What you can do with Alexa
- Say "Alexa, show the [camera name]" to display a live feed
- Say "Alexa, stop the camera" to end the stream
- Turn the camera on or off by voice (on supported models)
- Manage multiple cameras by assigning device names or groups
Step-by-step: Set up the EseeCloud Alexa Skill
Before you begin, make sure:
- The eseecloud app is installed and your camera is added and working (setup guide)
- You have an Amazon account with Alexa set up
Step 1 β Set up your camera in the app
- Open the eseecloud app (Android Β· iOS) and log in to your account.
- Make sure your camera is added and the live view is working correctly.
- Give each camera a memorable name β this name is what you will say to Alexa.
Step 2 β Enable the EseeCloud Alexa Skill
- Open the Alexa app on your phone.
- Tap More β Skills & Games.
- Search for "EseeCloud" in the search bar.
- Tap the EseeCloud skill and tap Enable to Use.
- When prompted, sign in with the same eseecloud account you use in the camera app.
- Alexa will discover your cameras automatically.
Step 3 β Test with a voice command
- Say: "Alexa, show the front door camera."
- Your live stream should appear on your Echo Show or Fire TV.
Trueview / 4G cameras: If you use Trueview cameras (4G & Wi-Fi models), search for the "EseeCloud Plus" skill instead. Setup steps are identical.
Alexa troubleshooting tips
- If Alexa cannot find your camera, say "Alexa, discover devices" or use the Alexa app to trigger device discovery.
- Make sure the camera name in the eseecloud app does not contain special characters β keep it simple (e.g., "Front Door", "Backyard").
- If the stream fails to load, check that your camera is online in the eseecloud app first (troubleshooting guide).
Google Home / Google Assistant Integration
eseecloud does not have a dedicated, standalone Google Home Action that is widely confirmed as of early 2026. However, some camera models may appear in the Google Home app's device compatibility list depending on your region and firmware version.
What to try
- Open the Google Home app on Android or iOS.
- Tap "+" β Set up device β Works with Google.
- Search for "EseeCloud" or "IP Pro" in the list.
- If found, follow the on-screen steps to link your eseecloud account.
If eseecloud does not appear in the Works with Google list, the best alternative is to use the Home Assistant integration (covered below) and then expose the camera to Google Home via the Home Assistant Google integration.
Voice commands with Google Assistant: Even without a native action, if your camera is in Home Assistant and exposed to Google, you can say "Hey Google, show the backyard camera" on a Nest Hub.
Home Assistant Integration (Community Method)
Home Assistant does not have an official native eseecloud integration. However, the Home Assistant community has identified working methods using the RTSP protocol or ONVIF. These are advanced setups β expect some technical configuration.
Method 1: RTSP via go2rtc (Recommended)
This is the most commonly reported working method in the Home Assistant community for eseecloud NVR systems and some standalone cameras.
Prerequisites:
- Your camera or NVR must have RTSP enabled (may require a firmware update β check with your device's manufacturer support)
- Home Assistant installed and running
- go2rtc add-on installed in Home Assistant
Step 1 β Find your camera's RTSP URL
The RTSP URL format is typically:
rtsp://<username>:<password>@<camera-ip>:<port>/stream
- Default port is usually
554 - Default username:
admin - Default password: the password you set during camera setup
Check your camera's manual or the eseecloud app's device settings for the exact RTSP path. Common paths include /stream or /live.
Step 2 β Configure go2rtc
In your Home Assistant go2rtc.yaml or via the add-on UI, add your camera stream:
streams:
front_door:
- rtsp://admin:yourpassword@192.168.1.100:554/stream
Replace admin, yourpassword, 192.168.1.100, and /stream with your actual values.
Step 3 β Add camera to Home Assistant
In your Home Assistant configuration.yaml:
camera:
- platform: generic
name: "Front Door"
still_image_url: "http://localhost:1984/api/frame.jpeg?src=front_door"
stream_source: "rtsp://admin:yourpassword@192.168.1.100:554/stream"
Or use the go2rtc integration in HA to add the stream via the UI.
Step 4 β Restart Home Assistant and verify
After restarting, the camera entity should appear in your Home Assistant dashboard. You can add it to a Lovelace card using the Picture Glance or Camera card type.
Method 2: ONVIF Integration
If your eseecloud camera or NVR supports ONVIF Profile S, you can use the built-in Home Assistant ONVIF integration.
Step 1 β Check ONVIF support
Not all eseecloud cameras support ONVIF β this is more common with NVR systems than standalone Wi-Fi cameras. If your device supports it, ONVIF can be auto-discovered by Home Assistant on your local network.
Step 2 β Add via Home Assistant UI
- In Home Assistant, go to Settings β Devices & Services β Add Integration.
- Search for ONVIF and select it.
- Enter your camera's IP address, ONVIF port (usually
8000or80), username, and password. - Home Assistant will connect and add your camera entity.
Step 3 β Fix H.265 / H.264 issues
A common error is "No usable cameras were found." This usually happens because the camera outputs H.265 video, but the ONVIF integration requires H.264. To fix this:
- Log into your camera's web interface or NVR settings.
- Find the video encoding settings.
- Switch the main or sub stream to H.264.
Tip: Use the sub stream (lower resolution) for Home Assistant display and keep the main stream in H.265 for NVR recording quality.
Viewing EseeCloud Cameras in Home Assistant Dashboards
Once your camera is integrated, you can display it on any Lovelace dashboard card.
Basic Camera Card (YAML)
type: picture-glance
title: Front Door
camera_image: camera.front_door
entities: []
Picture Entity Card with Controls
type: picture-entity
entity: camera.front_door
show_state: false
show_name: true
Automation Example β Motion Alert
automation:
- alias: "EseeCloud Motion Alert"
trigger:
- platform: state
entity_id: binary_sensor.front_door_motion
to: "on"
action:
- service: notify.mobile_app_your_phone
data:
message: "Motion detected on Front Door camera"
Note: Motion sensor entities are only available if your camera exposes motion events via ONVIF or a compatible integration.
RTSP and ONVIF Support by Device Type
eseecloud is a broad ecosystem β support for RTSP and ONVIF varies:
| Device Type | RTSP Likely | ONVIF Likely | Notes |
|---|---|---|---|
| NVR Kit (wired, 4/8 channel) | β Yes (firmware update may be needed) | β Often yes | Most commonly reported to work with HA |
| Standalone Wi-Fi IP Camera | β οΈ Varies by model | β οΈ Varies | Some models support, check manufacturer page |
| 4G SIM Card Camera | β Limited | β Limited | P2P only; local RTSP access requires LAN |
| PTZ Camera (wired) | β Yes | β Often yes | PTZ control via ONVIF may also work |
| Solar / Battery Camera | β No | β No | Battery cameras use P2P only; RTSP not supported |
EseeCloud ONVIF Support Details
eseecloud cameras that support ONVIF conform to ONVIF Profile S, which covers:
- Live streaming
- PTZ control (on PTZ models)
- Event notifications (motion, tamper)
- Device discovery on local network
ONVIF does not provide access to cloud storage, cloud event history, or push notification rules β those remain in the eseecloud app.
Frequently Asked Questions
Does EseeCloud work with Alexa?
Yes. There is an official EseeCloud Alexa Skill available in the Amazon Skills store. Enable it and link your eseecloud account to control cameras by voice and view live streams on Echo Show or Fire TV.
Does EseeCloud work with Google Home?
There is no widely confirmed dedicated Google Home action for eseecloud as of 2026. Check the Works with Google list in the Google Home app. As an alternative, integrate via Home Assistant and expose cameras to Google Home through that.
Does EseeCloud work with Home Assistant?
Not natively, but the community has proven methods using RTSP + go2rtc (for NVR systems) and ONVIF (for compatible devices). See the sections above for step-by-step instructions.
Can I use RTSP with a battery or solar-powered EseeCloud camera?
No. Battery and solar cameras use P2P cloud connectivity and do not expose an RTSP stream over the local network.
Why does Home Assistant say "No usable cameras were found" with ONVIF?
Your camera is likely outputting H.265 video. The HA ONVIF integration requires H.264. Change the video encoding to H.264 in your camera or NVR settings.
Can I still use the EseeCloud app after setting up Home Assistant?
Yes. The RTSP and ONVIF integrations read directly from the camera β they do not interfere with the eseecloud app. Both can run simultaneously.
Related Guides
- EseeCloud Camera Setup Guide β add and configure your camera first
- EseeCloud Troubleshooting β fix camera offline or connectivity issues
- EseeCloud for Windows (CMS) β PC-based monitoring without smart home platforms
- Download EseeCloud App β get the app for Android, iOS, Windows, or Mac