Video Edit Gold SDK ActiveX

Video Edit Gold SDK ActiveX 19.5

Platform : Windows 10, Windows 8, Vista, Windows 7, XP

For Windows Developers who need to Cut Videos,  Merge Videos , Split Videos and more Video Editing features with C#, Vb.Net Winforms WPF, VB6, Delphi, Vfp, Adobe Director, MS Access, C .

C# - 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.