Movie Player ActiveX Control

VolumeNormalize

 

Enable/Disable one-pass normalize when enable auto gain control. You must call UseVolumeBoost=true and VolumeAutoGain=true

VolumeNormalize =true means one-pass normalization. So at at the beginning mixing use 'gain' =VolumeGain. When overflow occur gain is decreased and so on. When VolumeNormalize= false
then after overflow gain begins to increase bit by bit until it reaches VolumeGain again or other overflow occur. You may call this property when video playing.

MoviePlayer1.VolumeNormalize[=Bool]


Parameter
True - Enable one-pass normalization.
False - Disable one-pass normalization.
Remark
This property is Read/Write.

Example

   

Visual Basic Syntax
MoviePlayer1.UseVolumeBoost=True
MoviePlayer1.VolumeGain = 10
MoviePlayer1.VolumeAutoGain=true
MoviePlayer1.VolumeNormalize=true
MoviePlayer1.FileName="c:\test.mpg"