Trying to normalize the volume for 1000's of small mp3 files. For this, I am looking for a way to get the RMS of each audio file:
var ThisRMS;
$('audio').attr('src','xxx.mp3');
ThisRMS=$('audio').rms; //***This functionality is what I'm looking for****
$('audio').prop('volume',1/ThisRMS); //Set louder for low RMS
$('audio')[0].play();
Any help with this missing audio "RMS" function would be much appreciated.