我试图使用 gdx- audio 扩展, 但无法解码 mp3 。 它有效, 但非常慢!! 一个 10 秒的文件需要 6. 57 秒才能解码 : (这里的方法是 :
public void decode() {
Mpg123Decoder decoder = new Mpg123Decoder(externalFile);
short[] sampleArray = new short[1024];
// read until we reach the end of the file
while (decoder.readSamples(sampleArray, 0, sampleArray.length) > 0) {}
}
谁能告诉我为什么这么长时间?