以编程方式创建音频数据

发布于 2024-12-08 19:33:57 字数 148 浏览 0 评论 0原文

您好,任何人都可以帮助我如何以编程方式创建音频数据。

我知道如何在我的资源上播放声音文件,但我需要的是一个可以在 AVAudioPlayer 上灵活播放(调整其长度)的无声音频。

任何人都可以指出我需要查找的一些资源或关键字吗?

谢谢

Hi can anyone help me how to create an audio data programmatically.

I know how to play sound files on my resources, but what I need is a silent audio that I can play flexibly(adjust its length) on AVAudioPlayer.

Can anyone point on some resources or keyword that I need to look up about these.

Thanks

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

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

发布评论

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

评论(1

水波映月 2024-12-15 19:33:57

当使用带有未压缩音频信号的签名样本格式时,无声音频数据只是一个零填充样本的流:

for (size_t idx = 0; idx < sampleCount; ++idx) {
  sampleBuffer[idx] = 0;
}

因此您可以使用该方法使流静音或从您生成的缓冲区创建资源(例如文件)。

when using a signed sample format with an uncompressed audio signal, silent audio data is simply a stream of zero filled samples:

for (size_t idx = 0; idx < sampleCount; ++idx) {
  sampleBuffer[idx] = 0;
}

so you can use that approach to mute a stream or create a resource (e.g. file) from a buffer you produce.

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