Copyright © 2006-2019 MultiMedia Soft

CdRippingNormalizationEnable method

Previous pageReturn to chapter overviewNext page

Remarks

 

Enables/disables normalization of tracks during a CD ripping session.

 

For details about the encoding format and parameters see the How to perform a CD ripping session section.

 

 

Syntax

 

[Visual Basic]

control.CdRippingNormalizationEnable (

bEnable as enumBoolean,

fTargetLevelPerc as Single,

fBelowLevelPerc as Single,

fAboveLevelPerc as Single

) as enumErrorCodes


 

[C++]

short control.CdRippingNormalizationEnable (

short bEnable

float fTargetLevelPerc,

float fBelowLevelPerc,

float fAboveLevelPerc

);


 

Parameter

Description

 

 

bEnable

Boolean value that specifies if normalization must be enabled or disabled.

Supported values are the following:

Mnemonic constant

Value

Meaning

BOOL_FALSE

0

Disabled normalization

BOOL_TRUE

1

Enables normalization

fTargetLevelPerc

Target peak level expressed in percentage.Typical values are 98% (-0.17 dB) or 100% (0 dB).

fBelowLevelPerc

Defines the lower peak level value, expressed in percentage, of the range where normalization effect will not be applied. Set this value to 100 if you want to apply normalization on all peak levels.

fAboveLevelPerc

Defines the higher peak level value, expressed in percentage, of the range where normalization effect will not be applied.  Set this value to 100 if you want to apply normalization on all peak levels.

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred (see the LastError property for further error details)

enumErrorCodes.ERR_NOERROR (0)

The call was successful.