KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > sound > sampled > AudioFormat > Top Examples

  • javax.sound.sampled.AudioSystem
    $fb TODO: - consistent usage of (typed) collections The <code>AudioSystem</code> class acts as the entry point to the sampled-audio system resources. This class lets you query and access the mixers that are installed on the system. <code>AudioSystem</code> includes a numbe ...
  • javax.sound.sampled.spi.FormatConversionProvider
    A format conversion provider provides format conversion services from one or more input formats to one or more output formats. Converters include codecs, which encode and/or decode audio data, as well as transcoders, etc. Format converters provide methods for determining what conversions are supp ...
  • javax.sound.sampled.AudioInputStream
    An audio input stream is an input stream with a specified audio format and length. The length is expressed in sample frames, not bytes. Several methods are provided for reading a certain number of bytes from the stream, or an unspecified number of bytes. The audio input stream keeps track of the ...
  • javax.sound.sampled.TargetDataLine
    A target data line is a type of <code>{@link DataLine}</code> from which audio data can be read. The most common example is a data line that gets its data from an audio capture device. (The device is implemented as a mixer that writes to the target data line.) <p> Note that the ...
  • javax.sound.sampled.Clip
    The <code>Clip</code> interface represents a special kind of data line whose audio data can be loaded prior to playback, instead of being streamed in real time. <p> Because the data is pre-loaded and has a known length, you can set a clip to start playing at any position in its a ...
Popular Tags