| Modifier and Type | Method and Description |
|---|---|
static WavFile |
WavFile.newWavFile(File file,
int numChannels,
long numFrames,
int validBits,
long sampleRate)
Initialize a new WavFile object for writing into the specified file.
|
static WavFile |
WavFile.openWavFile(File file)
Read WAV contents from a provided file.
|
int |
WavFile.readFrames(double[][] sampleBuffer,
int numFramesToRead)
Read some number of frames from the buffer into a multi-dimensional double array.
|
int |
WavFile.readFrames(double[][] sampleBuffer,
int offset,
int numFramesToRead)
Read some number of frames from a specific offset in the buffer into a multi-dimensional
double array.
|
int |
WavFile.readFrames(double[] sampleBuffer,
int numFramesToRead)
Read some number of frames from the buffer into a flat double array.
|
int |
WavFile.readFrames(double[] sampleBuffer,
int offset,
int numFramesToRead)
Read some number of frames from a specific offset in the buffer into a flat double array.
|
int |
WavFile.readFrames(int[][] sampleBuffer,
int numFramesToRead)
Read some number of frames from the buffer into a multi-dimensional int array.
|
int |
WavFile.readFrames(int[][] sampleBuffer,
int offset,
int numFramesToRead)
Read some number of frames from a specific offset in the buffer into a multi-dimensional int
array.
|
int |
WavFile.readFrames(int[] sampleBuffer,
int numFramesToRead)
Read some number of frames from the buffer into a flat int array.
|
int |
WavFile.readFrames(int[] sampleBuffer,
int offset,
int numFramesToRead)
Read some number of frames from a specific offset in the buffer into a flat int array.
|
int |
WavFile.readFrames(long[][] sampleBuffer,
int numFramesToRead)
Read some number of frames from the buffer into a multi-dimensional long array.
|
int |
WavFile.readFrames(long[][] sampleBuffer,
int offset,
int numFramesToRead)
Read some number of frames from a specific offset in the buffer into a multi-dimensional long
array.
|
int |
WavFile.readFrames(long[] sampleBuffer,
int numFramesToRead)
Read some number of frames from the buffer into a flat long array.
|
int |
WavFile.readFrames(long[] sampleBuffer,
int offset,
int numFramesToRead)
Read some number of frames from a specific offset in the buffer into a flat long array.
|
int |
WavFile.writeFrames(double[][] sampleBuffer,
int numFramesToWrite)
Write some number of frames into the buffer from a multi-dimensional double array.
|
int |
WavFile.writeFrames(double[][] sampleBuffer,
int offset,
int numFramesToWrite)
Write some number of frames into the buffer at a specific offset from a multi-dimensional
double array.
|
int |
WavFile.writeFrames(double[] sampleBuffer,
int numFramesToWrite)
Write some number of frames into the buffer from a flat double array.
|
int |
WavFile.writeFrames(double[] sampleBuffer,
int offset,
int numFramesToWrite)
Write some number of frames into the buffer at a specific offset from a flat double array.
|
int |
WavFile.writeFrames(int[][] sampleBuffer,
int numFramesToWrite)
Write some number of frames into the buffer from a multi-dimensional int array.
|
int |
WavFile.writeFrames(int[][] sampleBuffer,
int offset,
int numFramesToWrite)
Write some number of frames into the buffer at a specific offset from a multi-dimensional int
array.
|
int |
WavFile.writeFrames(int[] sampleBuffer,
int numFramesToWrite)
Write some number of frames into the buffer from a flat int array.
|
int |
WavFile.writeFrames(int[] sampleBuffer,
int offset,
int numFramesToWrite)
Write some number of frames into the buffer at a specific offset from a flat int array.
|
int |
WavFile.writeFrames(long[][] sampleBuffer,
int numFramesToWrite)
Write some number of frames into the buffer from a multi-dimensional long array.
|
int |
WavFile.writeFrames(long[][] sampleBuffer,
int offset,
int numFramesToWrite)
Write some number of frames into the buffer at a specific offset from a multi-dimensional
long array.
|
int |
WavFile.writeFrames(long[] sampleBuffer,
int numFramesToWrite)
Write some number of frames into the buffer from a flat long array.
|
int |
WavFile.writeFrames(long[] sampleBuffer,
int offset,
int numFramesToWrite)
Write some number of frames into the buffer at a specific offset from a flat long array.
|
Copyright © 2020. All rights reserved.