在 Android 中录制声音

发布于 2024-10-31 14:27:37 字数 153 浏览 0 评论 0原文


我想知道如何录制特定时间的声音,而不将其保存到文件中 - 例如保存在字节流中。另外,如果可能的话,使其看起来像 AMR 文件。我尝试过谷歌搜索,也自己写了一些代码,但没有成功。如果您可以将我链接到一个解释如何执行此操作的页面,或者给出一个示例,那就太好了:)

谢谢。

I'd like to know how to record sound for a specific amount of time, without saving it to a file - holding in a byte stream for example. Also, if possible, make it look like an AMR file. I've tried to search google, and also wrote some code myself, but had no success. If you can link me to a page that explains how to do so, or give an example, it would be very nice of you :)

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

别闹i 2024-11-07 14:27:37
MediaRecorder recorder = new MediaRecorder();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(MediaRecorder.OutputFormat.RAW_AMR);
recorder.setOutputFile(fileName);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

recorder.prepare();
recorder.start();

我不确定您是否可以跳过 setOutputFile 步骤并将录音保留在内存中(可能不能)。

MediaRecorder recorder = new MediaRecorder();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setOutputFormat(MediaRecorder.OutputFormat.RAW_AMR);
recorder.setOutputFile(fileName);
recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);

recorder.prepare();
recorder.start();

I'm not sure if you can skip the setOutputFile step and keep the recording in memory (probably not).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文