VideoEdit Gold ActiveX Control

OutputFileWidth Property

Description
    Set/Get  the width of avi, mov, mpeg file. You can resize the output mpg, avi, mov file resolution.
   You should set this property before call InitControl method. If you set value the of OutputFileWidth and OutputFileHeight equal of the resolution of
   video files. Because the resolution is same, so it will use not use default resizer filter when converting.

Property Type
    Read/Write property

Data Type
    Integer

Syntax

VideoEdit.OutputFileWidth[= value]

Example

[Visual Basic Syntax] (this example set the output avi file to 50X100)
VideoEdit1.FrameRate=8
VideoEdit1.OutputFileWidth =50
VideoEdit1.OutputFileHeight=100
VideoEdit1.OutputType = 8
VideoEdit1.UseVideoCompressor=True       
VideoEdit1.VideoCompressor=0     'use first video compressor
VideoEdit1.InitControl
VideoEdit1.AddVideo "c:\test.mpg" ,0,10
VideoEdit1.AddAudio "c:\test.mpg" ,0,10
VideoEdit1.Save "c:\test.avi"