@magenta/music
Version:
Make music with machine learning, in the browser.
8 lines • 342 B
JavaScript
export const SAMPLE_RATE = 16000;
export const SPEC_HOP_LENGTH = 512;
export const FRAME_LENGTH_SECONDS = SPEC_HOP_LENGTH / SAMPLE_RATE;
export const MEL_SPEC_BINS = 229;
export const MIN_MIDI_PITCH = 21;
export const MAX_MIDI_PITCH = 108;
export const MIDI_PITCHES = MAX_MIDI_PITCH - MIN_MIDI_PITCH + 1;
//# sourceMappingURL=constants.js.map