Go to documentation repository
Page History
...
The following 6 methods are used for export:
- ListSessions - − is used to get a list of all export operations.
- StartSession - − to start a new export operation.
- GetSessionState - − to get the status of a specific operation.
- StopSession - − to stop the operation.
- DestroySession - − to delete the operation along with the export results.
- DownloadFile - − to download the export results.
...
The export operation starts on the node where the camera is located. If the export is started for several cameras, then the first node is used. Note that it is not necessary to connect to each node - − the tasks will be forwarded to them automatically.
...
Expand | ||
---|---|---|
| ||
|
where,
- oneof - − implies the selection of one property that can be set in this operation.
- export_agent_access_point - − export agent id.
Using the combination of mode and output_type, you can create 4 export types:
- LiveMode + SnapshotType - − export a frame from live video.
- LiveMode + StreamType - − export a video clip from live video.
- ArchiveMode + SnapshotType - − export a frame from archive.
- ArchiveMode + StreamType - − export a video clip from archive.
...
Expand | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
For each export type, there are timeouts after which the operation is stopped if the GetSessionState method was not executed.
The timeout is counted from the moment the export operation was started and/or from the moment the GetSessionState method was last executed.
The timeout for exporting for exporting a video clip from live video is 5 minutes, for all other export types - − 30 minutes.
The id of the export operation will be received as the response to this method.
...
- id of the export operation and its properties.
export status.
Code Block enum EState { S_NONE = 0; S_RUNNING = 1; S_COMPLETED = 2; S_REMOVED = 3; }
where the S_COMPLETED status does not guarantee that the export was successful.
If there are export operation results, then a Result message will be received.
Code Block message Result { message File { string path = 1; uint64 size = 2; string min_timestamp = 3; string max_timestamp = 4; string mime_type = 5; } repeated File files = 1; bool succeeded = 2; }
where,
succeeded - − indicates that the export was successful;
- message File - − describes the list of files ready for download, including the conditional path to be used in the DownloadFile method and size.
...
- export operation id;
- path to the file;
- chunk_size_kb - − data block size;
- start_from_chunk_index - − serial number of the data block.
...