Copyright © 2006-2019 MultiMedia Soft

EncodeFormats.AIFF.EncodeMode property

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property EncodeMode As enumAIFFEncodeModes


 

[C#]

public enumAIFFEncodeModes EncodeMode {get; set;}


 

[C++]

public: __property enumAIFFEncodeModes get_EncodeMode();

public: __property void set_EncodeMode(enumAIFFEncodeModes);


 

 

Remarks

The Apple/SGI AIFF encoding mode used during recording, exporting or CD ripping sessions.

Supported values are the following:

Mnemonic Value

Numeric value

Meaning

AIFF_ENCODE_PCM_U8

0

AIFF PCM 8 bits Unsigned

AIFF_ENCODE_PCM_S8

1

AIFF PCM 8 bits Signed

AIFF_ENCODE_PCM_S16

2

AIFF PCM 16 bits Signed

AIFF_ENCODE_PCM_S24

3

AIFF PCM 24 bits Signed

AIFF_ENCODE_PCM_S32

4

AIFF PCM 32 bits Signed

AIFF_ENCODE_FLOAT32

5

AIFF 32 bits floating point

AIFF_ENCODE_G711_ULAW

6

AIFF G711 U-LAW

AIFF_ENCODE_G711_ALAW

7

AIFF G711 A-LAW

AIFF_ENCODE_GSM_610

8

AIFF GSM 6.10

 

This property is used only in the following situations:

During a recording session if the EncodeFormats.ForRecording property is set to ENCODING_FORMAT_AIFF (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_AIFF (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_AIFF (for further details see the How to export a recorded sound section).

 

For further details about using the Apple/SGI AIFF format refer to the EncodeAIFF class section.

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