Class Summary |
AbstractAnalyser |
The abstract class AbstractAnalyser.java is extended by all classes which
analyse an audiofile for normalization. the result is a max and min value,
which is passed to the normalizer. |
AbstractMeanCalc |
The interface AbstractMeanCalc.java defines a mean calculation. |
AnalyserTool |
The class AnalyserTool.java analyses all passed audiofiles for all possible
analysis types parallely. |
ArithmeticMean |
The class ArithmeticMean.java calculates the arithmetic mean. |
MinMaxAnalyser |
The class MinMaxAnalyser.java detects the absolute min/max values of the
passed audioinput |
NoAnalyser |
The class NoAnalyser.java does no analysation. |
RootMeanSquare |
The class RootMeanSquare.java calculates the root mean square. |
StdAnalyser |
The class StdAnalyser.java calculates the upper/lower boundary using the mean
and the std of the sample values. |