VideoEdit Gold ActiveX Control
|
Save Method
|
Description
After you call AddVideo, AddAudio Method , you can merge these video, audio files into different video format file.
Syntax
Public Function Save ( _ ByVal strFileName as string ) As Boolean
|
Parameters
strFileName
the file name you want save
Return Value
Return true - successful
Return false - Failed
Example
[Visual Basic Syntax] VideoEdit1.WMVProfile=0 'use first wmv profiles VideoEdit1.OutputType = 9 VideoEdit1.InitControl VideoEdit1.AddVideo "c:\test3.mpg" , 0,10 'Add test3.mpg into timeline and then extract video from 0 to 10 seconds VideoEdit1.AddAudio "c:\test3.mpg" , 0,10 'Add test3.mpg into timeline and then extract audio from 0 to 10 seconds VideoEdit1.Save "c:\testwmv.wmv"
|