Copyright © 2006-2023 MultiMedia Soft

EncodeFormats.OPUS.DownmixMode property

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property DownmixMode As enumOpusDownmixModes


 

[C#]

public enumOpusDownmixModes DownmixMode {get; set;}


 

[C++]

public: __property enumOpusDownmixModes get_DownmixMode();

public: __property void set_DownmixMode(enumOpusDownmixModes);


 

 

Remarks

Sets the way used to eventually downmix the number of channels of the input file for mono/stereo encoding in OPUS format.

 

 

Important note Starting from version 11 of the component, this property is ignored until the usage of default internal encoders is enabled: see the EnableInternalEncoders method for details about disabling internal encoders.

 

 

Supported values are the following:

Mnemonic Value

Numeric value

Meaning

OPUS_DOWNMIX_NONE

0

No downmix is applied.

OPUS_DOWNMIX_MONO

1

Downmix to mono. This property is the same as entering the --downmix-mono setting inside the Appendix E - OpusEnc command line.

OPUS_DOWNMIX_STEREO

2

Downmix to stereo. This property is the same as entering the --downmix-stereo setting inside the Appendix E - OpusEnc command line.

 

This property is used only in the following situations:

During a recording session if the EncodeFormats.ForRecording property is set to ENCODING_FORMAT_OPUS and the EncodeFormats.OPUS.EncodeMode property is set to a value different from OPUS_ENCODE_CUSTOM.

During a CD ripping session if the EncodeFormats.ForCdRipping property is set to ENCODING_FORMAT_OPUS and the EncodeFormats.OPUS.EncodeMode property is set to a value different from OPUS_ENCODE_CUSTOM.

During an exporting session if the EncodeFormats.ForExporting property is set to ENCODING_FORMAT_OPUS and the EncodeFormats.OPUS.EncodeMode property is set to a value different from OPUS_ENCODE_CUSTOM.

 

For further details about encoding in OPUS format refer to the EncodeOPUS class section.

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