Remarks
Sets effects applied during the sound format conversion session started through calls to the ConvertFile, ConvertFileRange, ConvertFileRaw, ConvertFileRawRange and ConvertAutomationExecute methods.
For further information about sound files conversion see the How to convert format of sound files tutorial.
Syntax
[Visual Basic]
Public Function ConvertFileDestEffectsSet (
bApplyNormalization as Boolean,
fTargetLevelPerc as Single,
bApplyDCOffsetRemoval as Boolean
) as String
|
|
[C#]
public string ConvertFileDestEffectsSet (
bool bApplyNormalization,
float fTargetLevelPerc,
bool bApplyDCOffsetRemoval
);
|
|
[C++]
public: string ConvertFileDestEffectsSet (
bool bApplyNormalization,
float fTargetLevelPerc,
bool bApplyDCOffsetRemoval
);
|
|
Parameter
|
Description
|
|
|
bApplyNormalization
|
Boolean value that tells if normalization must be applied during conversion.
Supported values are the following:
Mnemonic Value
|
Meaning
|
false
|
Don't apply normalization
|
true
|
Apply normalization
|
|
fTargetLevelPerc
|
Target peak level, expressed in percentage, for normalization.
|
bApplyDCOffsetRemoval
|
Boolean value that tells if DC offset removal must be applied during conversion.
Supported values are the following:
Mnemonic Value
|
Meaning
|
false
|
Don't apply DC Offset removal
|
true
|
Apply DC Offset removal
|
|
Return value
Value
|
Meaning
|
|
|
Empty string
|
An error occurred (see the LastError property for further error details)
|
Valid string
|
The formatted time
|
|