Remarks
Sets parameters used for resampling the destination sound file 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 ConvertFileDestResamplingSet (
nFrequency as Int32,
nChannels as Int32,
nBitsPerSample as Int32,
) as String
|
|
[C#]
public string ConvertFileDestResamplingSet (
Int32 nFrequency
Int32 nChannels,
Int32 nBitsPerSample
);
|
|
[C++]
public: string ConvertFileDestResamplingSet (
Int32 nFrequency
Int32 nChannels,
Int32 nBitsPerSample
);
|
|
Parameter
|
Description
|
|
|
nFrequency
|
Frequency used to resample the sound to convert.
|
nChannels
|
Number of channels used to resample the sound to convert.
|
nBitsPerSample
|
Number of bits per sample used to resample the sound to convert.
|
Return value
Value
|
Meaning
|
|
|
Empty string
|
An error occurred (see the LastError property for further error details)
|
Valid string
|
The formatted time
|
|