Copyright © 2006-2019 MultiMedia Soft

EncodeFormats.AACPlus.CustomString property

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property CustomString As string


 

[C#]

public string CustomString {get; set;}


 

[C++]

public: __property string get_CustomString();

public: __property void set_CustomString(string);


 

 

Remarks

String containing custom AAC+ options to send to the FdkAac encoder.

For advanced users, this string allows applying all of the possible AAC+ encoding options available with FdkAac. See Appendix F - FdkAac command line for the complete set of available options.

 

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 and the EncodeFormats.AACPlus.EncodeMode property is set to AACPLUS_ENCODE_CUSTOM (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 and the EncodeFormats.AACPlus.EncodeMode property is set to AACPLUS_ENCODE_CUSTOM (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 and the EncodeFormats.AACPlus.EncodeMode property is set to AACPLUS_ENCODE_CUSTOM (for further details see the How to export a recorded sound section).

 

IMPORTANT NOTE: As you may know, the Fdkaac command line is as follows:

usage: fdkaac [options] input_file

 

Contents of the CustomString property are related to the [options] field only so you must omit entering the word fdkaac and omit to specify the input_file and -o <filename> settings also. You should also omit the -S and --raw options which are already applied internally.

 

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.