You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/_components/camera.ring.markdown
+38Lines changed: 38 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,3 +31,41 @@ Configuration variables:
31
31
**Note:** To be able to playback the last capture, it is required to install the `ffmpeg` component. Make sure to follow the steps mentioned at [FFMPEG](https://home-assistant.io/components/ffmpeg/) documentation.
32
32
33
33
Currently it supports doorbell and stickup cameras.
34
+
35
+
36
+
## {% linkable_title Saving locally the videos captured by your Ring Door Bell %}
37
+
38
+
You can save locally the latest video captured by your Ring Door Bell by enabling the [downloader](/components/downloader) and the [python_scripts](/components/python_script) components.
39
+
40
+
- Add to the `configuration.yaml` the `downloader` and `python_scripts`. Visit the component page for further details.
41
+
42
+
```json
43
+
python_script:
44
+
downloader:
45
+
download_dir: downloads
46
+
```
47
+
- Create a file `ring_downloader.py` in the folder `<config>/python_scripts` and give it this content:
48
+
49
+
```python
50
+
# obtain ring doorbell camera object
51
+
# replace the camera.front_door by your camera entity
0 commit comments