The GetTrackTimes
action returns the timestamps (in epoch seconds) of the earliest and latest video frames in the circular buffer, for a specified track. This does not necessarily indicate that the circular buffer contains video for all of the time in between (for example, recording might have been stopped).
Type: synchronous
Parameter | Description | Required |
---|---|---|
Track
|
The track to obtain information for. | Yes |
http://localhost:15000/action=GetTrackTimes&Track=3
The following XML is an example response which indicates that earliest video frame in the circular buffer has a timestamp from 21 June 2017, and the latest video frame has a timestamp from 22 June 2017. The timestamps are in epoch seconds.
<autnresponse xmlns:autn="http://schemas.autonomy.com/aci/"> <action>GETTRACKTIMES</action> <response>SUCCESS</response> <responsedata> <start>1498038992</start> <end>1498113423</end> </responsedata> </autnresponse>
|