mirror of
https://github.com/Tonejs/Tone.js
synced 2025-01-15 05:13:56 +00:00
aaf880c925
* WIP moving tests to web-test-runner * updating thresholds * Adding file extensions * Testing integrations * linting * fixing dep * moving back to root dir * prettier all of the files * updating eslint rules to use with prettier * remove import package * moving tsignore around * removing unneeded ignores * all tests run on puppeteer, no need for testing guards * linting * import type syntax * cleaning up * Update package.json
26 lines
615 B
TypeScript
26 lines
615 B
TypeScript
import { TestAudioBuffer } from "./TestAudioBuffer.js";
|
|
import windowing from "fft-windowing";
|
|
import ft from "fourier-transform";
|
|
|
|
/**
|
|
* Return a spectrogram of the buffer
|
|
*/
|
|
export function analyze(buffer: TestAudioBuffer, fftSize = 256, hopSize = 128) {
|
|
const spectrogram: number[][] = [];
|
|
buffer
|
|
.toMono()
|
|
.toArray()
|
|
.forEach((channel) => {
|
|
for (
|
|
let index = 0;
|
|
index < channel.length - fftSize;
|
|
index += hopSize
|
|
) {
|
|
const segment = windowing.blackman_harris(
|
|
channel.slice(index, index + fftSize)
|
|
);
|
|
spectrogram.push(ft(segment));
|
|
}
|
|
});
|
|
return spectrogram;
|
|
}
|