User`s manual
68 Function Library
AngeloMPEG4_Encode_Create_Directory(Encoder_Inde
x:Longint; Dir:String):Longint;
@ Argument
Encoder_Index: Indicates the channel index for the MPEG4
encoder. The range of channels is 0 – 15.
n_file_name: The argument is the path and name of the file
that the encoded image will be saved to.
interval_second: This argument is the number of seconds
of encoded video to be saved.
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);