我最喜欢的广播电台播放mp3格式的收音机音频流.在我的
Android应用程序中,我可以接收和播放它没有任何问题.
如何实现录音功能?我要录制mp3无线电流到我的Android手机SD卡.
我尝试过MediaRecorder类没有任何结果…
Android Developer: MediaRecorder
…
mRecorder = new MediaRecorder(); mRecorder.setAudioSource(MediaRecorder.AudioSource.DEFAULT); mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT);
…
不幸的是我不能选择像:
mRecorder.setAudioSource(MediaRecorder.AudioSource.MP3_STREAM); … 原文链接:https://www.f2er.com/android/312516.html