This repository has been archived by the owner on Jul 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
Updating the Camera Snapshot #19
Comments
I figured out the endpoint and payload for taking a manual snapshot but unfortunately that does not update the "lastImage". |
@chaddotson did you try to run camera.update() to refresh the object? Could you share your script? from pyarlo import PyArlo
arlo = PyArlo('user, 'password')
for camera in arlo.cameras:
camera.update()
name = "pic-{0}.jpg".format(camera.name)
camera.last_video.download_thumbnail(name) |
@chaddotson did it work for you? |
Sorry got distracted by something else. I believe it worked to a point. Seems I had trouble making sure it always worked. I can't remember the details, will verify this week. |
@tchellomello negatory.
It grabs the last thumbnail but does not grab the current live snapshot. |
@chaddotson correct that is the current behavior. We are working to get a way to capture the live streaming as you can see at #8 |
Closing this in reference to #8 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I'm wanting to script grabbing an image from each of my cameras. Is there anyway to update each camera's current snapshot?
The text was updated successfully, but these errors were encountered: