Copyright © 2006-2019 MultiMedia Soft

EncodeFormats.WAV.EncodeMode property

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property EncodeMode As enumWavEncodeModes


 

[C#]

public enumWavEncodeModes EncodeMode {get; set;}


 

[C++]

public: __property enumWavEncodeModes get_EncodeMode();

public: __property void set_EncodeMode(enumWavEncodeModes);


 

 

Remarks

The WAV encoding mode used during recording, exporting or CD ripping sessions.

Supported values are the following:

Mnemonic Value

Numeric value

Meaning

WAV_ENCODE_PCM_U8

0

WAV PCM 8 bits Unsigned

WAV_ENCODE_PCM_S16

1

WAV PCM 16 bits Signed

WAV_ENCODE_PCM_S24

2

WAV PCM 24 bits Signed

WAV_ENCODE_PCM_S32

3

WAV PCM 32 bits Signed

WAV_ENCODE_FLOAT32

4

WAV 32 bits floating point, also known as WAVE_FORMAT_IEEE_FLOAT

WAV_ENCODE_G711_ULAW

5

WAV G711 U-LAW

WAV_ENCODE_G711_ALAW

6

WAV G711 A-LAW

WAV_ENCODE_IMA_ADPCM

7

WAV IMA ADPCM

WAV_ENCODE_MS_ADPCM

8

WAV Microsoft ADPCM

WAV_ENCODE_GSM_610

9

WAV GSM 6.10

WAV_ENCODE_G721_ADPCM_32

10

WAV G721 ADPCM 32 kbps

 

 

This property is used only in the following situations:

During a recording session if the EncodeFormats.ForRecording property is set to ENCODING_FORMAT_WAV (for further details see the How to perform a recording session section).

During a CD ripping session if the EncodeFormats.ForCdRipping property is set to ENCODING_FORMAT_WAV (for further details see the How to perform a CD ripping session section).

During an exporting session if the EncodeFormats.ForExporting property is set to ENCODING_FORMAT_WAV (for further details see the How to export a recorded sound section).

 

For further details about using the WAV format refer to the EncodeWAV class section.

For further information about available encoding formats see the EncodeFormatsMan class.