Which version of ffmpeg are you using (ffmpeg -version)?
None
Which Arlo hardware do you have (camera types - [Arlo, Pro, Q, etc.], basestation model, etc.)?
base Model first gen
What did you do?
nothing ;)
I use this script do download a picture from a specific cam
from arlo import Arlo
USERNAME = ''
PASSWORD = ''
try:
Instantiating the Arlo object automatically calls Login(), hich returns an oAuth token that gets cached.
# Subsequent successful calls to login will update the oAuth token.
arlo = Arlo(USERNAME, PASSWORD)
# At this point you're logged into Arlo.
# Get the list of devices and filter on device type to only get the basestation.
# This will return an array which includes all of the basestation's associated metadata.
basestations = arlo.GetDevices('basestation')
# Get the list of devices and filter on device type to only get the camera.
# This will return an array which includes all of the camera's associated metadata.
cameras = arlo.GetDevices('camera')
# Tells the Arlo basestation to trigger a snapshot on the given camera.
# This snapshot is not instantaneous, so this method waits for the response and returns the url
# for the snapshot, which is stored on the Amazon AWS servers.
snapshot_url = arlo.TriggerFullFrameSnapshot(basestations[0], cameras[3])
# This method requests the snapshot for the given url and writes the image data to the location specified.
# In this case, to the current directory as a file named "snapshot.jpg"
# Note: Snapshots are in .jpg format.
arlo.DownloadSnapshot(snapshot_url, '/home/pi/arlo/snapshot.jpg')
Please answer these questions before submitting your issue. Thanks!
What version of Python are you using (
python -V
)?Python 3.7.3
What operating system and processor architecture are you using (
python -c 'import platform; print(platform.uname());'
)?uname_result(system='Linux', node='unificontroller', release='4.19.75-v7l+', version='#1270 SMP Tue Sep 24 18:51:41 BST 2019', machine='armv7l', processor='')
Which Python packages do you have installed (run the
pip freeze
orpip3 freeze
command and paste output)?Which version of ffmpeg are you using (
ffmpeg -version
)?Which Arlo hardware do you have (camera types - [Arlo, Pro, Q, etc.], basestation model, etc.)?
base Model first gen
What did you do?
nothing ;)
I use this script do download a picture from a specific cam
from arlo import Arlo
USERNAME = '' PASSWORD = ''
try:
Instantiating the Arlo object automatically calls Login(), hich returns an oAuth token that gets cached.
except Exception as e: print(e)
Donwloaded JPG
403 Client Error: Forbidden for url: https://my.arlo.com/hmsweb/login/v2