Ciro Carandente (Coda)
Ciro Carandente (Coda)
> This needs some tests. In fact, tests are probably going to be the bulk of this PR :P > > The tests should verify the window vs some reference...
I wrote this one, maybe can be useful, I'm still not sure it's correct. ```dart Float64List _gaussian( int bufferSize, { double alpha = 0.25, }) { final res = Float64List(bufferSize);...
I'm trying to achieve a Spectro temporal modulation Spectrogram of the sound, like the one found in [Praat](https://www.fon.hum.uva.nl/praat/). Do you have some advices?
First of all, thank you for you answer! Very appreciated > I hadn't heard of the gaussian window. Looks like it's a function in matlab/octave though, so you could use...
@liamappelbe Hi, as I mentioned in the previous messages I need to generate a Spectrogram. Took the example and made some modifications (ot many, just added data to a list...
> Yeah, that spectrogram doesn't look right. > > Your `calculateSpectrogram` function looks correct to me, but it would probably be easier to deal with the result if you made...
> > Was thinking about making it a `List` with first index pointing to time and second index pointing to frequency, but tbh I'm not sure how to achieve that....
Ok, seems I have been able to reproduce the same spectrogram using `math.log`. For anyone reading in the future, I've used [this](https://github.com/psiphi75/sonogram/blob/master/src/colour_gradient.rs) code: ```dart Color getColour(double value) { int len...
Hi @liamappelbe, I know I'm disturbing you a lot, but you're the only person I can ask about! Feel free to not answer me :) As I said some days...
> > Hi @liamappelbe, I know I'm disturbing you a lot, but you're the only person I can ask about! > > You're fine. Half the bugs in this repo...