User`s manual
100 Function Library
format:
1: m4v,
2: avi.
3: both.
@ Return Code
0: ERROR_NoError
@ Example
< VC/BCB >
int Result;
int channel = 0;
char* n_file_name = “test”;
int interval_second = 10; //10 seconds
long format = 1 + 2; //save both file format
Result =
AngeloMPEG4_Decode_Save_File_Start(channel,
n_file_name, interval_second, format);
< Visual Basic >
Dim Result As Long, channel As Long,
interval_second As Long, format As Long
channel = 0;
n_file_name = “test”
interval_second = 60
format = 3 ‘save both format
Result =
AngeloMPEG4_Decode_Save_File_Start(channel,
n_file_name, interval_second, format)
<Delphi >
var
channel: Longint;
n_file_name: String;