I'm trying to "parse" and store the volume/dB and time data from an audio file (let's say a MP3 file).
Ideally, I want it formatted like this:
const dbData = {
'00:00': 54,
'00:01': 58,
'00:02': 60,
'00:03': 65,
'00:04': 58,
'00:05': 70,
...
}
Or something similar like a CSV or a JSON.
I have basic knowledge with the WebAudioAPI and I already know that you can read a file and extract the frequency for example.
Any help would be very appreciated!
Thanks!