I'm trying to fetch a last know camera image on a periodic basis. I'm trying to use last_image (bytes) as well as the snapshot_url (with schedule_snpashot() method call to update it) but unfortunately, it seems it returns me stale images (different).
I'm trying to fetch a last know camera image on a periodic basis. I'm trying to use
last_image
(bytes) as well as thesnapshot_url
(withschedule_snpashot()
method call to update it) but unfortunately, it seems it returns me stale images (different).This one always returns the same URL and doesn't update it even though
schedule_snapshot()
returnTrue
: http://python-arlo.readthedocs.io/index.html#pyarlo.camera.ArloCamera.snapshot_urlThis one returns a stale image, the same image I can see as a streaming preview and it's never updated, it could stay the same for days and I didn't find a way to update it expect of start streaming via the user interface (web or app): http://python-arlo.readthedocs.io/index.html#pyarlo.camera.ArloCamera.last_image
What is the approach to refresh the current image and download it?