Video Edit Gold SDK ActiveX

Video Edit Gold SDK ActiveX 9.1

Platform : Windows 9X, XP, Vista, Window 7

For Windows Developers who need to add picture in picture effect, video mixing, audio mixing and add subtitle on video, create subtitle file, video audio editing in Adobe Director, ASP, ASP.net, php, c++ , c#, vb.net , vb, delphi, vfp.

How to import Video Edit Gold ActiveX to C# 2005 Project

Step 1: When you download demo version of Video Edit Gold ActiveX and installed it.

Step 2: Create New c# Project, select Windows Application.

Step 3: In Toolbox, Right Click mouse and Select Choose Items...  , Select VideoEdit Gold  Control in COM Components Tab.

 

Step 4: Now you will see the VideoEdit Gold ActiveX on ToolBar,  Drag the VideoEdit Gold Control from Components Tab to form.

Step 5: Add Button on form.

Step 6: Add following code in Button click event. The video have 30 second duration.

private void button1_Click(object sender, EventArgs e)
{
axVideoEdit1.InitControl();
axVideoEdit1.AddVideo("c:\\yourvideo.mpg", 0, 30, 0);
axVideoEdit1.AddAudio("c:\\yourvideo.mpg", 0, 30);
axVideoEdit1.Preview();
}

Step 7: Now you can run the sample.