Uses of Class
sampled.RawAudioFormat

Packages that use RawAudioFormat
sampled   
 

Uses of RawAudioFormat in sampled
 

Methods in sampled that return RawAudioFormat
static RawAudioFormat RawAudioFormat.create(java.lang.String parameterString)
          Generate a RawAudioFormat from the given parameterString.
static RawAudioFormat RawAudioFormat.getAudioFormat(java.lang.String key)
          Query common (headerless) RawAudioFormats:
ssg/16: signed, little endian, 16kHz, 16bit
ssg/8: signed, little endian, 8kHz, 16bit
ulaw/16: Mu-law compressed, little endian, 16kHz
ulaw/8: Mu-law compressed, little endian, 8kHz
alaw/16: A-law compressed, little endian, 16kHz
alaw/8: A-law compressed, little endian, 8kHz
Use RawAudioFormat.setWavHeader() to add the default WAV header; access RawAudioFormat.hs to set header size manually.
static RawAudioFormat RawAudioFormat.getRawAudioFormatFromFile(java.lang.String fileName)
          Try to query the RawAudioFormat from the header in the given file
 

Constructors in sampled with parameters of type RawAudioFormat
AudioFileListReader(java.lang.String fileList, RawAudioFormat format, boolean cache)
          Generate a new AudioFileListReader using given file list, RawAudioFormat and cache indicator.
AudioFileReader(RawAudioFormat format, byte[] data)
          Construct an AudioFileReader which reads from an already available byte array.
AudioFileReader(java.lang.String fileName, RawAudioFormat format, boolean cacheFile)
          Construct an AudioFileReader using a custom RawAudioFormat