播放音频文件时遇到问题。我目前正在学习如何使用android和libgdx进行开发。所以我创建了这个代码,以便在应用程序打开时播放mp3。但它完全没有发挥作用。我一直在下面记录日志。
代码:
package com.soundfx.game;
import com.badlogic.gdx.ApplicationAdapter;
import com.badlogic.gdx.Gdx;
import com.badlogic.gdx.audio.Sound;
import com.badlogic.gdx.graphics.GL20;
import com.badlogic.gdx.graphics.Texture;
import com.badlogic.gdx.graphics.g2d.SpriteBatch;
public class SoundFx extends ApplicationAdapter {
Sound sound;
@Override
public void create () {
sound = Gdx.audio.newSound(Gdx.files.internal("Smile.mp3"));
sound.play();
}
@Override
public void render () {
}
}
日志: http://imgur.com/gallery/bFUmXqA
我也得到采样率(96000)超出范围