需要一个简单的录音示例
我需要在 android 中使用 AudioRecorder 进行简单的音频录制和播放示例。我尝试使用 MediaRecorder,效果很好。
I am in need of simple audio recording and playing example using AudioRecorder in android. I tried with MediaRecorder, it works fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你是说
AudioRecord
?使用 Google 代码搜索搜索例如“AudioRecord.OnRecordPositionUpdateListener”。顺便说一句,AudioRecord
进行录音,而不是播放。另请参阅:
You mean
AudioRecord
? Search e.g. "AudioRecord.OnRecordPositionUpdateListener" using Google Code Search. Btw,AudioRecord
does recording, not playing.See also:
这是音频记录的示例代码。
那么你需要两个按钮(或者一个按钮在不同的时间充当不同的功能)来启动和停止记录线程。
然后您可以将 pcm 数据保存到 WAV 文件中。
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.