Created
December 14, 2018 18:44
-
-
Save nicosingh/c35931065eed922504a6dbca0205a868 to your computer and use it in GitHub Desktop.
Get Blink Camera last video using blinkpy
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from blinkpy import blinkpy | |
blink = blinkpy.Blink(username='[email protected]', password='pass') | |
blink.start() | |
camera = blink.cameras['your_camera_name'] | |
blink.refresh() | |
camera.video_from_cache.raw | |
camera.video_to_file('/tmp/snap.mp4') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment