Movie Player Gold SDK ActiveX

Movie Player Gold SDK ActiveX

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

For Windows Developers who need to advanced media player with overlay text, image, add audio effects, dual display with C#, C++ , VB.Net , VB, Delphi, Vfp, MS Access.

Popular Solution Go   Back

How to Disable Voice from Karaoke Video using VB6, VB.NET, C#, Delphi

Step 1: To install the Movie Player Gold SDK ActiveX, begin by launching the setup file (movieplayergoldsetup.exe). Select the desired installation folder for the Movie Player Gold SDK ActiveX and continue with the installation on your development computer.

Step 2: Launch your development tools and import the Movie Player Gold ActiveX to form. 

Step 3: The following code is VB6 code. 

MoviePlayer1.UseVolumeBoost = True 
MoviePlayer1.FileName = "c:\yourfile.avi"
MoviePlayer1.Play

Step 4: When the video playback, you may call VolumeAudioChannel = 0 or VolumeAudioChannel = 1 to enable or disable the voice.

Step 5: If your input video is MPEG1 video, you need call SetMPEG1AudioChannel 2
, make sure it decode both channels first.

MoviePlayer1.UseVolumeBoost = True 
MoviePlayer1.FileName = "c:\yourfile.mpg"
MoviePlayer1.SetMPEG1AudioChannel 2
MoviePlayer1.Play