python-onvif-zeep
python-onvif-zeep copied to clipboard
ONVIF Client Implementation in Python 2+3 (using https://github.com/mvantellingen/python-zeep instead of suds as SOAP client)
problem: onvif.exceptions.ONVIFError: Unknown error: Sender not authorized I have the problem, how can I solve it? And I have enabled onvif and created a administrator user in my camera. Thank...
Dear Mr. FalkTannhaeuser. Thanks for the great implementation of ONVIF camera. I am currently using your implementation with a SNP-6320H ONVIF compliant camera. As I was trying to run some...
Hi all, I have been working with this library from the last week and wish to manipulate my camera (PTZ) while streaming video from it simultaneously. In separate processes, I...
I manage to run the relative focus and continuous focus but not absolute focus. There is no error but the camera focus is not move to the desired focus. I'm...
I'm trying to pull messages using pull point subscription as below. ```python mycam = ONVIFCamera("192.168.10.180", 80, 'admin', 'admin') event_service = mycam.create_events_service() pps = event_service.CreatePullPointSubscription() plp = mycam.pullpoint.zeep_client.create_service('{http://www.onvif.org/ver10/events/wsdl}PullPointSubscriptionBinding', pps.SubscriptionReference.Address._value_1) pullmess=plp.PullMessages(Timeout=timedelta(seconds=2), MessageLimit=10)...
I am trying to use the same library. First I got the problem with `_token` and I replaced it with `token = media_profile.token` but it gives an error of none...
I installed the latest version of the **python-onvif-zeep**, but **examples** from repository do not work. I am faced with the following problem: `Traceback (most recent call last): File "examples/continuous_move.py", line...
Hi, I'm starting with onvif, so I'm trying to run the examples to control a PTZ camera. I am able to run the continuous_move.py example, but when I try to...
hey guys, i already installed the onvif-zeep the code bellow have no error ` mycam = ONVIFCamera('192.168.1.10', 8899, 'admin', 'se1988', './wsdl') media_service = mycam.create_media_service() profiles = media_service.GetProfiles()` but the examples...