User`s manual
118 Appendix: GEME-VM3000 Series Introduction
Format: The argument describes the format in which to save
the file.
1. m4v file
2. avi file
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_
Index, 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_
Index, n_file_name, interval_second,
format)
< Delphi >
Var
Encoder_Index, Result: Longint;