Movie Player ActiveX Control

AudioEffect

 

Get or Set the selected audio effect. The first index is 0. If you set to -1, it will not loading audio effects. You must set UsePitchTempo property = false and UseVolumeBoost property = false if you want to use Audio Effect.
 

MoviePlayer1.AudioEffect[=Integer]


Parameter
Integer
the index of audio effect. The first index is 0.

Remark
This property is Read/Write.

Example

   

Visual Basic Syntax
iAudioEffectCount = MoviePlayer1.GetAudioEffectCount
For i = 0 To iAudioEffectCount - 1
  List1.AddItem MoviePlayer1.GetAudioEffectName(i)
Next
MoviePlayer1.UsePitchTempo = False
MoviePlayer1.AudioEffect = List1.ListIndex
MoviePlayer1.FileName = "c:\test1.mpg"
MoviePlayer1.SetEchoParam Text28, Text29, Text30, Text31, Text52