Copyright © 2006-2019 MultiMedia Soft

EncodeFormats.AACPlus.EncodeMode property

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property EncodeMode As enumAacEncodeModes


 

[C#]

public enumAacEncodeModes EncodeMode {get; set;}


 

[C++]

public: __property enumAacEncodeModes get_EncodeMode();

public: __property void set_EncodeMode(enumAacEncodeModes);


 

 

Remarks

The encoding mode used for AAC+ format during exporting sessions.

Supported values are the following:

Mnemonic Value

Numeric value

Meaning

AACPLUS_ENCODE_MPEG4_LC

0

Encodes using the MPEG-4 AAC LC profile.

AACPLUS_ENCODE_MPEG4_HE

1

Encodes using the MPEG-4 HE-AAC profile.

AACPLUS_ENCODE_MPEG4_HE_V2

2

Encodes using the MPEG-4 HE-AAC v2 profile.

AACPLUS_ENCODE_CUSTOM

3

Encode using the custom string defined inside the EncodeFormats.AACPlus.CustomString property.

 

This property is used only in the following situations:

 

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

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

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

 

For further details about encoding in AAC+ format refer to the EncodeAACPlus class section.

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