I've written my own media player interface using javascript and html5. Currently my volume slider maps to the browser's volume attribute 1:1. I'd quite like to adjust this to account for perceived loudness.
The volume attribute section of the html5 specs say:
... 0.0 being silent, and 1.0 being the loudest setting, values in between increasing in loudness. The range need not be linear.
This seems to imply that there's no standard for what scale browsers should use. I'm worried that if I adjust for perceived loudness in one browser, another browser might already be doing this resulting in an overcorrection.
Does anyone know what volume scales browsers currently use and whether these are likely to change in future?