Skip to content

Instantly share code, notes, and snippets.

@mattdesl
Created November 21, 2012 18:40
Show Gist options
  • Save mattdesl/4126776 to your computer and use it in GitHub Desktop.
Save mattdesl/4126776 to your computer and use it in GitHub Desktop.
int audioIndex = 0;
// // ---------------- STREAM AUDIO ---------------- //
for (int len = 0; out != null;) {
// System.out.println("Real Slice: "+slice);
if (audioIndex + BUFFER_SIZE >= AUDIO_STREAM.length)
len = AUDIO_STREAM.length - audioIndex;
else
len = BUFFER_SIZE;
if (len <= 0) // end of stream
break;
// fill the chunk
//audioAmplitude = RANDOM.nextFloat();//audioAmplitude;
audioAmplitude = AUDIO_STREAM[audioIndex] * (1f/Byte.MAX_VALUE);
// FFT fft = new FFT(BUFFER_SIZE, SAMPLE_RATE);
// fft.forward(AUDIO_STREAM_FLOAT, audioIndex);
// spectrums[0] = fft.calcAvg(20, 140);
// spectrums[1] = fft.calcAvg(140, 400);
// spectrums[2] = fft.calcAvg(400, 2600);
// spectrums[3] = fft.calcAvg(2600, 5200);
// spectrums[4] = fft.calcAvg(5200, 20000);
audioIndex += out.write(AUDIO_STREAM, audioIndex, len);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment