I'm looking for a cross-platform library that allows me to analyze the waveform of a sound file. It needs to be able to at least have the ability to query the amplitude for a given sample, and it would be nice if it could do frequency detection.
相关问题
- Can we recover audio from MFCC coefficients?
- Is there a way to play audio on a mobile browser w
- Advice for supporting both Mac and Windows Desktop
- Is it possible to know the duration of an MP3 befo
- Playing specific system sound with Qt
相关文章
- How do you make an installer for your python progr
- Libgdx - Check if a key is being held down?
- Is there a non-java, cross platform way to launch
- How to get a settings storage path in a cross-plat
- Android Visualizer class throwing runtime exceptio
- Is there a standard way to get the user config dir
- Simulate Microphone (virtual mic)
- Android Studio Mediaplayer how to fade in and out
Well, querying the amplitude for a given sample is rather easy, you only need to convert the sample's value to decibels. As for the other types of analysis, you'll probably find aubio to be a good tool. It can do frequency detection, and even gives you the option of using a number of different detection algorithms depending on whether you need accuracy or performance.