Copyright © 2006-2019 MultiMedia Soft

RecordedSound.TrimSilenceEnhanced method

Previous pageReturn to chapter overviewNext page

Remarks

 

Requests to edit the recorded sound deleting the given sound range.

 

For further details about recorded sound methods refer to the RecordedSound class section.

For further details see the How to perform a recording session section.

 

 

Syntax

 

[Visual Basic]

Public Function TrimSilenceEnhanced (

nSilenceThresholdInitial as Int16,

nSilenceThresholdFinal as Int16

) as enumErrorCodes


 

[C#]

public enumErrorCodes TrimSilenceEnhanced (

Int16 nSilenceThresholdInitial,

Int16 nSilenceThresholdFinal

);


 

[C++]

public: enumErrorCodes TrimSilenceEnhanced (

Int16 nSilenceThresholdInitial,

Int16 nSilenceThresholdFinal

);


 

Parameter

Description

 

 

nSilenceThresholdInitial

Number representing the silence threshold referred to the volume level for the initial portion of the recorded sound. Supported values are expressed with a linear volume in the range from 0 to 32767. If for example you should set a value of 800, any portion of sound having a volume level lower than 800 would be considered as silent.

In case you should need to set a threshold value expressed in dB, before setting this parameter you could convert the value in dB into a linear value through the following formula (C syntax):

ValueLinear = 32767 * pow (10, ValueInDB/20);

nSilenceThresholdFinal

Number representing the silence threshold referred to the volume level for the final portion of the recorded sound.

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred. Check the LastError property value in order to see the last error.

enumErrorCodes.ERR_NOERROR (0)

The method call was successful.