Skip to content

NET_SDK_PlayBackSaveData

Interface Definition

1
2
3
4
BOOL NET_SDK_PlayBackSaveData(
    POINTERHANDLE lPlayHandle,
    LONG lChannel,
    char* sFileName);
1
2
3
4
public static extern bool NET_SDK_PlayBackSaveData(
    POINTERHANDLE playHandle,
    Int32 lChannel,
    string filePath);

Function Description

Capture the playback video data and save it as a file.

Parameter Description

Parameters Type Remark
lPlayHandlein POINTERHANDLE The playback handle, or the return value of NET_SDK_PlayBackByTime or NET_SDK_PlayBackByTimeEx.
lChannelin LONG Channel number, starting from 0. This parameter is invalid for IPC devices.
sFileNamein char* The file path to save the data, note: Please use absolute paths, and do not use relative paths.

Return Value

  • type:BOOL

  • remark:Returns TRUE if successful, FALSE if failed.

Remarks

None

Error Code