I'm creating a component to view an audio file, that part I've already achieved, which can be seen in this image.
My biggest problem now is that I need a way to get all the bytes of the audio file, using the Web Audio API or some other method in typescript (preferably) or javascript.
I have researched and found the AnalyserNode, however it shows only a part of the audio being executed, it does not provide an array with all the bytes of the file.
Does anyone know of any other solution?
Thank you.