Copyright © 2008-2019 MultiMedia Soft

EncodeFormats.MP2.EncodeMode property

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property EncodeMode As enumMp2EncodeModes


 

[C#]

public enumMp2EncodeModes EncodeMode {get; set;}


 

[C++]

public: __property enumMp2EncodeModes get_EncodeMode();

public: __property void set_EncodeMode(enumMp2EncodeModes);


 

 

Remarks

The encoding mode used for MP2 format during recording, exporting or CD ripping sessions.

Supported values are the following:

Mnemonic Value

Numeric value

Meaning

MP2_ENCODE_CBR

0

Encode using the Constant Bitrate (CBR) specified inside the EncodeFormats.MP2.CBR property. In this mode, the bitrate will be the same for the whole file. It means that each part of your mp2 file will be using the same number of bits. The musical passage being a difficult one to encode or an easy one, the encoder will use the same bitrate, so the quality of your mp2 is variable. Complex parts will be of a lower quality than the easiest ones. The main advantage is that the final files size won't change and can be accurately predicted.

MP2_ENCODE_CUSTOM

1

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

 

This property is used if the EncodeFormats.FormatToUse property is set to ENCODING_FORMAT_MP2

 

For further details about encoding in MP2 format refer to the EncodeMP2 class section.

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