Hi,
we integrated Milestone on our widget with Mobile MIP SDK. All works fine except when we try to playback records in a manually set time interval. Milestone returns no data or the first record of database.
We have record of 5 second every 30 minutes…We need that when we set start and end of time restriction , Milestone go to return the first record in this time interval.
The function we use is XPMobileSDK.RequestStream(options, success, error) where in options we have :
options = {
CameraId: cameraId,
DestWidth: width,
DestHeight: height,
SignalType: "Playback" ,
MethodType: 'Push' ,
Fps: 25,
ComprLevel: 71,
KeyFramesOnly: 'No',
RequestSize: 'Yes',
StreamType: 'Transcoded',
TImeRestrictionStart: Number(dateTime),
TImeRestrictionEnd: Number(dateTime) + 200000,
SeekType: "Time",
Time: 1000
};
In SeekType we also tried to use TimeOrBefore,TimeOrAfter,TimeAfter,TimeBefore.
Thanks for help.