Search found 8 matches
- Sunday 21 November 2021 13:33
- Forum: Switches and Scenes
- Topic: Ring 2 Doorbell
- Replies: 86
- Views: 32522
Re: Ring 2 Doorbell
Hmm... I updated my code in the original post again... switched from retrieving videos from a download URL to using the recording_download() method which also puts a timestamp in the video which i find nifty (nice tip @mikef !). Still have not cracked the "always behind by one event" - i can can see ...
- Sunday 21 November 2021 10:25
- Forum: Switches and Scenes
- Topic: Ring 2 Doorbell
- Replies: 86
- Views: 32522
Re: Ring 2 Doorbell
the API only seems to work in such a way that each new event retrieves only the video from the event before it - so you are always one event behind I've reverted to version 0.1.0 (non-threading). Although by no means exhaustive testing, I seem to be able to save the current event by using the ...
- Friday 19 November 2021 11:43
- Forum: Switches and Scenes
- Topic: Ring 2 Doorbell
- Replies: 86
- Views: 32522
Re: Ring 2 Doorbell
@all,
FYI, another update to the code here: viewtopic.php?p=282381#p282381
I think I will call it quits here. This meets my needs and seems to work nicely (until they change the API or rate limit / block me )
FYI, another update to the code here: viewtopic.php?p=282381#p282381
I think I will call it quits here. This meets my needs and seems to work nicely (until they change the API or rate limit / block me )
- Friday 19 November 2021 9:23
- Forum: Switches and Scenes
- Topic: Ring 2 Doorbell
- Replies: 86
- Views: 32522
Re: Ring 2 Doorbell
Hello, Excuse my ignorance, but do I have to install the tchellomello script first? :oops: https://github.com/tchellomello/python-ring-doorbell yes that's right... see point 1 in my post above. But.... make sure you have pip3 installed first and to be sure you dont install a pip2 version of the ...
- Thursday 18 November 2021 21:18
- Forum: Switches and Scenes
- Topic: Ring 2 Doorbell
- Replies: 86
- Views: 32522
Re: Ring 2 Doorbell
Hi All, I have been playing with this some more and have expanded my original code and made it a little more robust, added multithreading, added multi device support, event type detection and logging, descriptive event type in saved file names, and more... Original post has been updated with the new ...
- Tuesday 16 November 2021 11:36
- Forum: Switches and Scenes
- Topic: Ring 2 Doorbell
- Replies: 86
- Views: 32522
- Tuesday 16 November 2021 7:44
- Forum: Switches and Scenes
- Topic: Ring 2 Doorbell
- Replies: 86
- Views: 32522
Re: Ring 2 Doorbell
Can you try to change the two instances of in the code example above to something else unique for you?
https://github.com/tchellomello/python- ... -874319220
Code: Select all
MyOwnAPI/0.1.0
https://github.com/tchellomello/python- ... -874319220
- Monday 15 November 2021 22:47
- Forum: Switches and Scenes
- Topic: Ring 2 Doorbell
- Replies: 86
- Views: 32522
Re: Ring 2 Doorbell
Hi all, I see a lot of people struggling and I am not sure this will help but i spent an hour or so today to get this working for my intended use case and will share some working code in the event it helps any of you. ***Working as of the date of this post*** First some prerequisites: 1) You must ...