The ToH curve [1] varies between individuals:
And this can be said without considering your local audio infraestructure.1
Therefore, it is quite improbable that, at least in practice, you have a ToH identical to the theoretical curve shown in the previous milestone.
If you are talking to a semi-deaf interlocutor, why would you send them auditory information that they will not be able to perceive? For this reason, this step proposes the calculation of your own ToH curve, information that must be transmitted to your interlocutor so that they can use the quantization steps adapted to your perception.
An optimal-user-specific ToH should take into consideration your noticeable quantization noise in each subband, defining a set of QSSs (one per subband). To find such set, the following algorithm can be used:
Starting with the lowest frequency subband (at the first iteration the rest of subbands are zero). While the noise (suppose that the quantization noise follows an uniform distribution) is imperceptible:
It’s a good idea to have the option of determining the ToH of a given subband, without reconsidering the rest of them.
Implement the previous procedure in a Python module named create_ToH.py
. The
output of such module should be a text file, named custom_ToH.txt
, with three
columns (example):
# Initial_frequency_in_Herts Band-width_in_Herts ToH 20 50 100 70 60 80 130 80 60 210 100 50 310 150 40 460 180 30 : : :
Modify the modules *_ToH.py
to use the file custom_ToH.txt
, when
available.
Mark: 8 points.
[1] M. Bosi and R.E. Goldberd. Introduction to Digital Audio Coding and Standards. Kluwer Academic Publishers, 2003.
1For example, your speakers could not have a flat frequency response, or your room could attenuate some frequencies.