Open tib-sim opened 1 year ago
@tib-sim Have you found any answer to the question, I'm facing the same problem and tryig to get access to the sd card footages but facing so many problem, thanks in advance.
I am sorry we did not resolve this issue. We ended up using a software called motioneye https://github.com/motioneye-project/motioneye/wiki.
I am trying to access the SD card of my IP camera in a remote way.
The set of functions available is here https://www.onvif.org/onvif/ver20/util/operationIndex.html.
I can easily use the ones under
DeviceMgmt
by callingmycam.devicemgmt
or the ones underPTZ
by calling firstptz=mycam.create_ptz_service()
and thenmycam.ptz
. I am not so sure about this difference by the way.However if I tried to do the same with
Recording
(with I guess the functions allowing to get SD card data), but it does not work.I ran
mycam.devicemgmt.GetCapabilities()
and can see thatPTZ
andRecording
are not "organized" in the same way (see below) because in the structurePTZ
is "acessible" directly while recording is under something calledExtension
with a set of different "functions" likeDeviceIO
.How can I use the the
Recording
functions, what should be the python syntax?