我有这个很棒的音频可视化工具,它是用 Processing 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 中说。url 可能看起来像这样 - 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 的无知绝对无济于事。如果可能的话,有什么关于实现这一点的最佳方法的建议吗?