Uses of Class
org.tritonus.share.sampled.convert.TFormatConversionProvider

Packages that use TFormatConversionProvider
org.tritonus.sampled.convert Standard format converters (A-law, μ-law, PCM, sample rate). 
org.tritonus.sampled.convert.gsm GSM 06.10 format converter. 
org.tritonus.sampled.convert.jorbis Ogg vorbis decoder based on the jorbis library. 
org.tritonus.sampled.convert.lame Mp3 encoder based on LAME. 
org.tritonus.sampled.convert.vorbis Ogg vorbis encoder and decoder based on native libraries. 
org.tritonus.share.sampled.convert Base classes for the implementation of FormatConversionProviders. 
 

Uses of TFormatConversionProvider in org.tritonus.sampled.convert
 

Subclasses of TFormatConversionProvider in org.tritonus.sampled.convert
 class AlawFormatConversionProvider
          This provider (currently) supports these conversions: PCM 8 Signed -> alaw PCM 8 Unsigned -> alaw PCM 16 signed big endian -> alaw PCM 16 signed little endian -> alaw ulaw -> alaw and vice versa.
 class ImaAdpcmFormatConversionProvider
          IMA ADPCM encoder and decoder.
 class PCM2PCMConversionProvider
          This provider supports these PCM conversions (<--> meaning both directions): 8 Signed <-> 8 unsigned 16/24/32 Signed little endian <-> 16/24/32 Signed big endian arbitrary conversion between 8/16/24/32 bit sample width
(up-conversion is done by adding low-byte zero(s)).
 class SampleRateConversionProvider
          This provider converts sample rate of 2 PCM streams.
 class SmartFormatConversionProvider
          "Smart" formatConversionProvider.
 class UlawFormatConversionProvider
          This provider (currently) supports these conversions: PCM 8 Signed -> ulaw PCM 8 Unsigned -> ulaw PCM 16 signed big endian -> ulaw PCM 16 signed little endian -> ulaw alaw -> ulaw and vice versa.
 

Uses of TFormatConversionProvider in org.tritonus.sampled.convert.gsm
 

Subclasses of TFormatConversionProvider in org.tritonus.sampled.convert.gsm
 class GSMFormatConversionProvider
          ConversionProvider for GSM files.
 

Uses of TFormatConversionProvider in org.tritonus.sampled.convert.jorbis
 

Subclasses of TFormatConversionProvider in org.tritonus.sampled.convert.jorbis
 class JorbisFormatConversionProvider
          Pure-java decoder for ogg vorbis streams.
 

Uses of TFormatConversionProvider in org.tritonus.sampled.convert.lame
 

Subclasses of TFormatConversionProvider in org.tritonus.sampled.convert.lame
 class Mp3LameFormatConversionProvider
          ConversionProvider for encoding MP3 audio files with the lame lib.
 

Uses of TFormatConversionProvider in org.tritonus.sampled.convert.vorbis
 

Subclasses of TFormatConversionProvider in org.tritonus.sampled.convert.vorbis
 class VorbisFormatConversionProvider
          ConversionProvider for ogg vorbis encoding.
 

Uses of TFormatConversionProvider in org.tritonus.share.sampled.convert
 

Subclasses of TFormatConversionProvider in org.tritonus.share.sampled.convert
 class TEncodingFormatConversionProvider
          This is a base class for FormatConversionProviders that only change the encoding, i.e. they never change the sample size in bits without changing the encoding change the sample rate change the number of channels It is assumed that each source format can be encoded to all target formats.
 class TMatrixFormatConversionProvider
          Base class for arbitrary formatConversionProviders.
 class TSimpleFormatConversionProvider
          This is a base class for FormatConversionProviders that can convert from each source encoding/format to each target encoding/format.