I am in need of simple audio recording and playing example using AudioRecorder in android. I tried with MediaRecorder, it works fine.
相关问题
- How can I create this custom Bottom Navigation on
- Can we recover audio from MFCC coefficients?
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Is there a way to play audio on a mobile browser w
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
You mean
AudioRecord
? Search e.g. "AudioRecord.OnRecordPositionUpdateListener" using Google Code Search. Btw,AudioRecord
does recording, not playing.See also:
here is the sample code for audio record.
then you need two buttons (or one acts as different function in the different time) to start and stop the record thread.
then you can save the pcm data into a WAV file.