我有一个很棒的音频可视化工具,使用处理 2.0a5 和 minim 库,它使用 fft 来分析音频数据。
import ddf.minim.*;
import ddf.minim.analysis.*;
Minim minim;
AudioPlayer song;
FFT fft;
int col=0; // color, oscillates over time.
void setup()
{
size(498, 89);
// always start Minim first!
minim = new Minim(this);
// specify 512 for the length of the sample buffers
// the default buffer size is 1024
song = minim.loadFile("obedear.mp3", 2048);
song.play();
// an FFT needs to know how
// long the audio buffers it will be analyzing are
// and also needs to know
// the sample rate of the audio it is analyzing
fft = new FFT(song.bufferSize(), song.sampleRate());
}
void draw()
{
colorMode(HSB);
background(0);
// first perform a forward fft on one of song's buffers
// I'm using the mix buffer
// but you can use any one you like
fft.forward(song.mix);
col++;
if (255<col){col=0;} // loops the color
strokeWeight(8);
stroke(col, 255, 255);
// draw the spectrum as a series of vertical lines
// I multiple the value of getBand by 4
// so that we can see the lines better
for(int i = 0; i < fft.specSize(); i++)
{
line(i-160, height, i-160, height - fft.getBand(i)*2);
}
}
void stop()
{
song.close();
minim.stop();
super.stop();
}
所以现在我想做的是通过 url 导入歌曲源,比如说从 soundcloud。网址可能看起来像这样 - http://api.soundcloud.com/tracks/46893/stream?client_id=759a08f9fd8515cf34695bf3e714f74b 返回 128 kbps mp3 流。我知道JMF 2.1支持用于流式音频的URLDataSource,但我不确定JMF和processing/minim/fft是否可以很好地协同工作。我对java真的很陌生,仍然不完全熟悉它的来龙去脉。我真的习惯了php和html。我还看到Soundcloud在其javascript SDK中集成了Soundmanager2流媒体。不确定这是否会提供任何可能的集成解决方案。
理想情况下,我想用 php 和 html 向用户提供 soundcloud 歌曲列表,点击时,我想用我自己的可视化工具播放这首歌,最好是我在处理中创建的可视化工具。我很难让它工作,我对 java 的无知绝对无济于事。关于实现这一目标的最佳方法的任何建议,如果可能的话?
神圣的sh@t!Minim的loadFile接受直接URL,就像我上面发布的文件名参数一样!我在这里找到了答案:code.compartmental.net/tools/minim/manual-minim 有这么多不同的文档链接,我想我错过了"手册"。无论如何,这太棒了。如果有人想要一个很酷的基于 java 的音频播放器和可视化工具,请随时窃取我的(无论如何,主要是公开使用代码(。