1

I have a flac file and I need to analize its waveform, so I need to have the pcm data in an array. Is there some library which does this for me without converting the file with commandline tools? I can use both Python and C.

fortea
  • 345
  • 4
  • 15
  • The most common answer to this if you're using linux is "Use Gstreamer". [See this similar question](http://stackoverflow.com/questions/3507746/use-python-gstreamer-to-decode-audio-to-pcm-data). – John Lyon Jan 22 '13 at 00:00

1 Answers1

1

I suggest you use libFLAC to decode. http://flac.sourceforge.net/

GogglesGuy
  • 157
  • 4