How to develop a Spectrum Analyser from a realtime audio?
问题 I am developing an app that get a source audio from mic in realtime, with no file storage. Basically, I use: mRecorder = new MediaRecorder(); mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC); mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB); mRecorder.setOutputFile("/dev/null"); My question is, how I can do a spectrum graphic from this realtime audio, with no files. It can be done? All post that I read are