Skip to content

Commit f5a18c2

Browse files
robmarkcolefabaff
authored andcommitted
Add sharing images between HASS instances (home-assistant#4607)
* Add sharing images between HASS instances Adds description of how to share camera feeds between multiple home-assistant instances using the REST API. * Minor changes
1 parent de28af7 commit f5a18c2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

source/_components/camera.generic.markdown

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,14 @@ camera:
6868
name: Some Image
6969
still_image_url: https://127.0.0.1:8123/local/your_image.png
7070
```
71+
72+
### {% linkable_title Sharing a camera feed from one Home Assistant instance to another %}
73+
74+
If you are running more than one Home Assistant instance (let's call them the 'host' and 'receiver' instances) you may wish to display the camera feed from the host instance on the receiver instance. You can use the [REST API](/developers/rest_api/#get-apicamera_proxycameraltentity_id) to access the camera feed on the host (IP address 127.0.0.5) and display it on the receiver instance by configuring the receiver with the the following:
75+
76+
```yaml
77+
camera:
78+
- platform: generic
79+
name: Host instance camera feed
80+
still_image_url: https://127.0.0.5:8123/api/camera_proxy/camera.live_view
81+
```

0 commit comments

Comments
 (0)