AudioRecord 类的问题
我正在使用 AudioRecord 类录制音频。我想将音频录制到资产文件夹或资源文件夹中的特定文件中。我认为录制没有问题。但是在读取缓冲区时,它显示了一些问题(它抛出 NullPointerException)。谁能建议可能是什么问题?
I am recording audio using AudioRecord class.I want to record audio into a particular file in my asset folder or resource folder.I think there is no problem in recording.but while reading buffer it is showing some problem(it is throwing NullPointerException).Can anyone suggest what may be the problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法将文件保存在 Asset 文件夹中。 Assets 文件夹是只读的,您必须将其保存在设备的内部或外部存储中。
下面是一个用于记录媒体文件的核心。
这是您可以录制音频和播放音频的示例
You can not save file inside Asset folder. Assets folder is read only instead of it you will have to save it in the internal or external storage of your device
Below there is a core to record the media file.
This is the example you can record audio as well as play audio