适用于 iOS 的波表合成器
我需要在我的应用程序中实现一个波表播放器。对于不同的音符(复调),需要音符打开和音符关闭功能(包括循环相关声音)。 样本是可用的或者可以自己转换,需要一个能够播放、循环和停止样本或波形的类。 我发现了一些开源项目,例如 Fluid Synth,但这里的问题是一些可用于 iOS 或 openAL 的示例代码。 预先感谢您提供任何提示或片段, 问候,科恩。
I need to implement a wavetable player in my app. For different notes (polyphony) a note on and note off feature is needed (including looping for relevant sounds).
The samples are available or can be converted by myself, the need is for a class that is capable of playing, looping and stopping the samples or waves.
I found some open source project like fluid synth but here the question is for some sample code available for iOS or openAL.
Thank you in advance for any hints or snippets,
regards, Koen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以看看 iOS5 中新的 Sampler 音频单元。这使您可以以低延迟播放带有音调控制的样本。
有一些 示例代码来自苹果公司。
You could take a look at the new Sampler audio unit in iOS5. This lets you play samples with pitch control at low latency.
There is some sample code from Apple.