Which version of ffmpeg are you using (ffmpeg -version)?
pi@raspberrypi:~ $ ffmpeg -version
ffmpeg version 4.1.4-1+rpt1~deb10u1 Copyright (c) 2000-2019 the FFmpeg developers
built with gcc 8 (Raspbian 8.3.0-6+rpi1)
Which Arlo hardware do you have (camera types - [Arlo, Pro, Q, etc.], basestation model, etc.)?
Arlo Pro 2
What did you do?
If possible, provide the steps you took to reproduce the issue.
A complete runnable program is good. (don't include your user/password or any sensitive info)
I've installed arlo:
pi@raspberrypi:~ $ sudo pip install arlo
Looking in indexes: https://pypi.org/simple, https://www.piwheels.org/simple
Requirement already satisfied: arlo in /usr/local/lib/python2.7/dist-packages (1.2.30)
Requirement already satisfied: sseclient==0.0.22 in /usr/local/lib/python2.7/dist-packages (from arlo) (0.0.22)
Requirement already satisfied: monotonic in /usr/local/lib/python2.7/dist-packages (from arlo) (1.5)
Requirement already satisfied: PySocks in /usr/local/lib/python2.7/dist-packages (from arlo) (1.7.1)
Requirement already satisfied: requests in /usr/lib/python2.7/dist-packages (from arlo) (2.21.0)
Requirement already satisfied: six in /usr/lib/python2.7/dist-packages (from sseclient==0.0.22->arlo) (1.12.0)
Then copy/past your program and changed username/password
Launch the program with Thonny python IDE
What did you expect to see?
No error I guess
What did you see instead?
>>> %Run program.py
Traceback (most recent call last):
File "/home/pi/Desktop/prog/arlo-master/program.py", line 1, in <module>
from arlo import Arlo
File "/home/pi/Desktop/prog/arlo-master/arlo.py", line 22, in <module>
from eventstream import EventStream
File "/home/pi/Desktop/prog/arlo-master/eventstream.py", line 17, in <module>
import monotonic
ModuleNotFoundError: No module named 'monotonic'
Does this issue reproduce with the latest release?
I don't know what the Thonny Python IDE is, but I assume it's using python3 instead of python2 and you don't have the arlo packages and it's dependencies installed for python3.
Please answer these questions before submitting your issue. Thanks!
What version of Python are you using (
python -V
)?pi@raspberrypi:~ $ python -V Python 2.7.16 pi@raspberrypi:~ $ python3 -V Python 3.7.3
What operating system and processor architecture are you using (
python -c 'import platform; print(platform.uname());'
)?pi@raspberrypi:~ $ python -c 'import platform; print(platform.uname());' ('Linux', 'raspberrypi', '4.19.75-v7+', '#1270 SMP Tue Sep 24 18:45:11 BST 2019', 'armv7l', '')
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.)?
Arlo Pro 2
What did you do?
If possible, provide the steps you took to reproduce the issue. A complete runnable program is good. (don't include your user/password or any sensitive info)
What did you expect to see?
What did you see instead?
Does this issue reproduce with the latest release?
Yes
Thanks a lot for your help