I'm not sure the best way to ask this question, but here goes.
I created my own way to do a type of Fourier transform, and I would like to see if this gives me better compression than the standard methods of FFT. Currently, I am reading in a wav file, doing the Fourier transform using my method (it's not an FFT or discrete), and reproducing the wav data. I then use the ffmep
command-line tool to convert my wav file to mp3.
My question is, does this process make my Fourier transform redundant?
If so, how can I produce an mp3 file, given my Fourier series?
What I am trying to achieve: I have a fourier transform algorithm that I think is better at compressing and the standard FFT, and I'd like to test this hypothesis on sound compression. What is the best way to do this?