Hello, I am developing a program to connect to a Milestone 2017-R2 server using Python. I have a question regarding the Protocol Integration concept and hope you can help me.
The “GoTo” message returns with the following information:
Previous: [milliseconds since UNIX epoch]
Current: [milliseconds since UNIX epoch]
Next: [milliseconds since UNIX epoch]
When developing playback video function, I have to continuously transmit and receive “GoTo” messages with the parameter: time = Next until next <= end time.
My goal is to optimize the video playback processing and minimize the transmission and reception of messages. I only want to process 4-6 frames per second. Is there a way to retrieve the entire list of Current timestamps within a specified start and end time range?
I would then filter the Current list to obtain the desired frames.