Send a coffee to woheller69@t-online.de
RadarWeather | Gas Prices | Smart Eggtimer |
---|---|---|
Bubble | hEARtest | GPS Cockpit |
Audio Analyzer | LavSeeker | TimeLapseCam |
Arity | Cirrus | solXpect |
gptAssist | dumpSeeker | huggingAssist |
FREE Browser | ||
A fork of Audio spectrum Analyzer for Android (See README.old for its original readme)
This software shows the frequency components' magnitude distribution (called spectrum) of the sound heard by your cell phone. Can be used to help tuning musical instrument or tone in singing, (tentative) measure environmental noise and sound revent education or experiments.
- Show spectrum or spectrogram in real-time, with decent axis labels.
- Linear, Logarithm and (Musical) Note frequency axis support.
- You can put a cursor in the plot, for measurement or as a marker.
- Easy gestures to fine exam the spectrum: i.e. pinch for scaling and swipe for view move.
- Show peak frequency in a moderate accuracy (FFT + interpolation).
- Show dB or A-weighting dB (dBA), although not suitable for serious application.
- Possible to take averages of several spectrum then plot, make the spectrum smoother.
- You may record the sound (while analyzing!) to a WAV file (PCM format). Then you can deal with it with your favorite tool.
- Support all recorder sources except those need root privilege (see list in Android reference: MediaRecorder.AudioSource)
- Support all possible sampling rates that your phone is capable. e.g. useful to find out the native (or best) sampling format for you phone.
- Load calibration files for microphones, see Example
- Microphone, of course.
- External storage (e.g MicroSD card), if you want to record the sound.
This app does not send any personal or non-personal information in any form over network.
Only with user's permission and explicit order, this app can store microphone data on the user's device.
The permission to read microphone is required because that is the essential data this app needs to compute and display the spectrum and spectrogram.
The permission to read and write storage is for saving microphone data (in WAV PCM format) only and is optional. This is provided for convenience of user (e.g. user might want to use another app to process the recorded data). It is user's responsibility to remove the recorded data if they are no longer needed.
This software, Audio Spectrum Analyzer for Android, is released under the Apache License, Version 2.0.
Copyright thinkingcow, bewantbe, woheller69
The whole program structure is roughly follows the MVC model:
AnalyzerActivity.java is the controler, as the main activity, it receives user inputs and system events, then sent corresponding commands to views or sampling and analyzing procedures.
AnalyzerViews.java is the view in MVC. It is used to manage (initialization, display, refresh) UI texts, buttons, dialogs and graphics. AnalyzerGraphic.java is a main sub-view which manage display of spectrum(SpectrumPlot.java) and spectrogram(SpectrogramPlot.java).
SamplingLoop.java is more or less the "model" part. It performs the sampling and FFT analysis, and inform the graphics update.
The data process loop is located in run()
in SamplingLoop.java (after commit c9e430b (Feb 06, 2017), but basicly this process didn't change since the initial commit), as well as the trigger of graphics refresh.
In every loop of while (isRunning)
, it reads a chunk of audio samples by
record.read(audioSamples, 0, readChunkSize);
, then "stream" it to STFT.java
by
stft.feedData(audioSamples, numOfReadShort);
which calculates RMS and FFT whenever enough data is collected. The view is then informed through
activity.analyzerViews.update(spectrumDBcopy);
which ultimately calls invalidate()
of the graphic view to request an update, then the AnalyzerGraphic.onDraw(Canvas c)
will be called automatically.