Copyright © 2008-2019 MultiMedia Soft

EncodeFormats.FormatToUse property

Previous pageReturn to chapter overviewNext page

Type

[Visual Basic]

Public Property FormatToUse As enumEncodingFormats


 

[C#]

public enumEncodingFormats FormatToUse {get; set;}


 

[C++]

public: __property enumEncodingFormats get_FormatToUse();

public: __property void set_FormatToUse(enumEncodingFormats);


 

 

Remarks

The format used for encoding.

Supported values are the following:

Mnemonic Value

Value

Meaning

ENCODING_FORMAT_WAV

1

WAV format.

The specific WAV encoding mode can be defined inside the EncodeFormats.WAV.EncodeMode property.

ENCODING_FORMAT_MP3

2

MP3 format through the Lame.exe external encoder, if available on the target system.

The specific MP3 encoding mode can be defined inside the EncodeFormats.MP3.EncodeMode property.

ENCODING_FORMAT_WMA

3

WMA format through the Windows Media Audio components, if available on the target system: check the return value of the IsWmaAvailable method for this purpose.

The specific WMA encoding mode can be defined inside the EncodeFormats.WMA.EncodeMode property.

ENCODING_FORMAT_OGG

4

OGG Vorbis format through the OggEnc.exe external encoder, if available on the target system.

The specific OGG Vorbis encoding mode can be defined inside the EncodeFormats.OGG.EncodeMode property.

ENCODING_FORMAT_AAC

6

AAC or MP4 format through the Faac.exe external encoder, if available on the target system; note that encoding in memory is currently not supported by Faac.exe encoder.

The specific AAC encoding mode can be defined inside the EncodeFormats.AAC.EncodeMode property.

ENCODING_FORMAT_ACM

7

Format supported by one of the Audio Compression Manager codecs available on the target system.

The specific Audio Compression Manager encoding mode can be defined inside the EncodeFormats.ACM.EncodeMode property.

ENCODING_FORMAT_AIFF

8

Apple/SGI AIFF format.

The specific AIFF encoding mode can be defined inside the EncodeFormats.AIFF.EncodeMode property.

ENCODING_FORMAT_AU

9

Sun/NeXT AU format.

The specific AU encoding mode can be defined inside the EncodeFormats.AU.EncodeMode property.

ENCODING_FORMAT_PAF

10

Ensoniq PARIS format.

The specific PAF encoding mode can be defined inside the EncodeFormats.PAF.EncodeMode property.

ENCODING_FORMAT_SVX

11

Commodore Amiga IFF / SVX format..

The specific SVX encoding mode can be defined inside the EncodeFormats.SVX.EncodeMode property.

ENCODING_FORMAT_NIST

12

Sphere NIST format..

The specific NIST encoding mode can be defined inside the EncodeFormats.NIST.EncodeMode property.

ENCODING_FORMAT_IRCAM

13

Berkeley/IRCAM/CARL format.

The specific IRCAM encoding mode can be defined inside the EncodeFormats.IRCAM.EncodeMode property.

ENCODING_FORMAT_VOC

14

Creative VOC format.

The specific VOC encoding mode can be defined inside the EncodeFormats.VOC.EncodeMode property.

ENCODING_FORMAT_W64

15

Sonic Foundry's 64 bit RIFF/WAV format.

The specific W64 encoding mode can be defined inside the EncodeFormats.W64.EncodeMode property.

ENCODING_FORMAT_PVF

16

Portable Voice Format format.

The specific PVF encoding mode can be defined inside the EncodeFormats.PVF.EncodeMode property.

ENCODING_FORMAT_CAF

17

Core Audio File format.

The specific CAF encoding mode can be defined inside the EncodeFormats.CAF.EncodeMode property.

ENCODING_FORMAT_RAW

18

RAW format.

The specific RAW encoding mode can be defined inside the EncodeFormats.RAW.EncodeMode property.

ENCODING_FORMAT_FLAC

19

FLAC format.

The specific FLAC encoding mode can be defined inside the EncodeFormats.FLAC.EncodeMode property.

ENCODING_FORMAT_MP2

20

MP2 format through the TwoLame.exe external encoder, if available on the target system.

The specific MP2 encoding mode can be defined inside the EncodeFormats.MP2.EncodeMode property.

ENCODING_FORMAT_OPUS

21

OPUS format through the OpusEnc.exe external encoder, if available on the target system.

The specific OPUS encoding mode can be defined inside the EncodeFormats.OPUS.EncodeMode

ENCODING_FORMAT_AAC_PLUS

22

AAC+ (HE-AAC) format through the Fdkaac.exe external encoder, if available on the target system; note that encoding in memory is currently not supported by Fdkaac.exe encoder.

The specific AAC+ encoding mode can be defined inside the EncodeFormats.AACPlus.EncodeMode property.

 

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