I'm thinking of using libsamplerate to resample audio files which seems fairly simple.
In the FAQ it states that after resampling that the audio should be normalised which I'm not sure how to do.
It states that the audio samples should be in the range (-1.0, 1.0). Is it just a case of:
- Finding the sample which lies the furthest from this range
- Calculating the coefficient that will result in it's value being -1.0 or 1.0
- Applying that coefficient to every sample in the audio file?