Android平台音频信号FFT的实现

转载请标明出处:http://blog.csdn.net/sctu_vroy/article/details/45871823

功能:加载本地SD卡中moveDsp文件夹中的音频文件(包括录音获取文件和MP3文件),播放实时FFT,绘制出信号的时域和频域波形。

设计步骤:
第一步:页面布局,编写录音工具类URecorder(设置录音属性)和接口IVoiceManager
public class URecorder implements IVoiceManager{
	private static final String TAG = "URecorder";
	private Context context = null;
	private String path = null;
	private MediaRecorder mRecorder = null;
	public URecorder(Context context, String path) {
		this.context = context;
		this.path = path;
		mRecorder = new MediaRecorder();
	}

	@Override
	public boolean start() {
		//设置音源为Micphone    
        mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);    
        //设置封装格式    
        mRecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);    
        mRecorder.setOutputFile(path);    
        //设置编码格式    
        mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);    
        try {    
            mRecorder.prepare();    
        } catch (IOException e) {    
            Log.e(TAG, "prepare() failed");    
        }    
        //录音  
        mRecorder.start();    
        return false;
	}
	@Override
	public boolean stop() {
		mRecorder.stop();    
        mRecorder.release();    
        mRecorder = null;   
        return false;
	}
}
public interface IVoiceManager {
	public boolean start();
	public boolean stop();
}<
评论 4
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值