1

I'm working on an audio visualizer using Blender, and I'm wanting to separate input audio files into their respective frequencies to allow my models to react based on the amplitude at different frequencies. Is there a Python library out there that can (somewhat simply) separate an audio file into different frequencies? I'm going to be generating 12 different animations with audio files, and want to be able to decide which frequencies to separate out and whatnot.

1 Answers1

1

You can use Scipy.signal https://docs.scipy.org/doc/scipy/reference/signal.html or, Pyfar https://pyfar.readthedocs.io/en/latest/readme.html or, Librosa

Filipe Pinto
  • 721
  • 4
  • 11