Package | Description |
---|---|
auditory.sampled |
Modifier and Type | Method and Description |
---|---|
BufferedSound |
BufferedSoundFactory.createBufferedSound(javax.sound.sampled.AudioInputStream inStream)
Create a BufferedSound from an AudioInputStream.
|
BufferedSound |
BufferedSoundFactory.createBufferedSound(double frequency,
int length,
float sampleRate,
double amplitude)
Create a BufferedSound from a sine wave with a
particular frequency.
|
BufferedSound |
BufferedSoundFactory.createBufferedSound(java.lang.String name)
Create a BufferedSound from a resource/file.
|
BufferedSound |
SpeedChangeOp.createCompatibleDestinationSound(BufferedSound src)
Creates a BufferedSound with a different sampling rate.
|
BufferedSound |
AbstractBufferedSoundOp.createCompatibleDestinationSound(BufferedSound src)
Creates a BufferedSound with the same sampling rate and length
as the source.
|
BufferedSound |
BufferedSoundUnaryOp.filter(BufferedSound src,
BufferedSound dest)
Performs a single-input/single-output operation on a
BufferedSound.
|
BufferedSound |
AbstractBufferedSoundUnaryOp.filter(BufferedSound src,
BufferedSound dest)
A two-source/one-destination filter.
|
BufferedSound |
BufferedSoundBinaryOp.filter(BufferedSound src1,
BufferedSound src2,
BufferedSound dest)
Performs a dual-input/single-output operation on a
BufferedSound.
|
BufferedSound |
AbstractBufferedSoundBinaryOp.filter(BufferedSound src1,
BufferedSound src2,
BufferedSound dest)
A two-source/one-destination filter.
|
Modifier and Type | Method and Description |
---|---|
void |
BufferedSound.append(BufferedSound other)
Append a BufferedSound to this BufferedSound.
|
BufferedSound |
SpeedChangeOp.createCompatibleDestinationSound(BufferedSound src)
Creates a BufferedSound with a different sampling rate.
|
BufferedSound |
AbstractBufferedSoundOp.createCompatibleDestinationSound(BufferedSound src)
Creates a BufferedSound with the same sampling rate and length
as the source.
|
BufferedSound |
BufferedSoundUnaryOp.filter(BufferedSound src,
BufferedSound dest)
Performs a single-input/single-output operation on a
BufferedSound.
|
BufferedSound |
AbstractBufferedSoundUnaryOp.filter(BufferedSound src,
BufferedSound dest)
A two-source/one-destination filter.
|
BufferedSound |
BufferedSoundBinaryOp.filter(BufferedSound src1,
BufferedSound src2,
BufferedSound dest)
Performs a dual-input/single-output operation on a
BufferedSound.
|
BufferedSound |
AbstractBufferedSoundBinaryOp.filter(BufferedSound src1,
BufferedSound src2,
BufferedSound dest)
A two-source/one-destination filter.
|
boolean |
BufferedSound.matches(BufferedSound other)
Compares this BufferedSound object to another.
|