User`s manual

Function Library 45
3: both
Dir:
The argument is the path and name of the directory that will be created.
@ Return Code
@ Example
<VC/BCB >
int Result;
int Encoder_Index = 0;
char* n_file_name = “test”;
long interval_second = 60;
int format = 3; //save both format
char* Dir = “temp”;
Result =
AngeloMPEG4_Encode_Save_File_Start
(Encoder_Inde
x, n_file_name, interval_second, format);
Result =
AngeloMPEG4_Encode_Create_Directory
(Encoder_Index, Dir);
< Visual Basic >
Dim Result As Long, Encoder_Index As Long,
interval_second As Long, format As Long
Encoder_Index = 0;
n_file_name = “test”
interval_second = 60
format = 3 “save both format
Dir = “temp”
Result =
AngeloMPEG4_Encode_Save_File_Start
(Encoder_Inde
x, n_file_name, interval_second, format)
<Delphi >
Var
Encoder_Index, Result: Longint;
Dir, n_file_name: String;
interval_second, format: Longint;
begin
Encoder_Index:= 0;
Dir := “C:\VideoDir”;
n_file_name := Dir + “\” + “Video0”;
interval_second := 60;