ajayvenugopal / musicg

Automatically exported from code.google.com/p/musicg
0 stars 0 forks source link

java.lang.NoSuchMethodError: com.musicg.wave.extension.Spectrogram.getSpectrogramData() #1

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Tried to run the RenderSpectrogramDemo but I got an error. It seems that a 
method is missing from the class Spectrogram. 

See below for details. 

Exception in thread "main" java.lang.NoSuchMethodError: 
com.musicg.wave.extension.Spectrogram.getSpectrogramData()[[D
    at com.musicg.graphic.GraphicRender.renderSpectrogram(GraphicRender.java:138)
    at RenderSpectrogramDemo.main(RenderSpectrogramDemo.java:39)

Original issue reported on code.google.com by Albert.L...@gmail.com on 19 Sep 2012 at 3:27

GoogleCodeExporter commented 8 years ago
I ran into a similar issue. The way I figured out how to move around it - at 
least until the issues is addressed - was to circumvent that particular call 
and do what the constructor was intended to do. 

After you create your Spectrogram instance, you need to create a double array, 
as that is what the GraphicRender is expecting when you are passing data using 
renderSpecrogramData.

For example:
Spectrogram spectrogram1 = new Spectrogram(audio1);
double [][] spec1Data = spectrogram1.getAbsoluteSpectrogramData();
GraphicRender render = new GraphicRender();
render.renderSpectrogramData(spec1Data, "spec1.jpg");

That got me the spectrogram that I was looking for.

Original comment by green.jo...@gmail.com on 9 Nov 2012 at 1:59