C++现场音响控制
在使用 Visual Studio 2008 或 2010 编译的 C++ 中,我正在寻找一种在乐器上演奏音符的方法,然后能够更改该音符的音高(即从 C 到 D)、音量,甚至乐器在程序中播放它。
我知道这听起来很像 MIDI,但我不确定如何实现它。我会很好,甚至更喜欢使用第 3 方程序,例如 CSound,但同样不知道如何操作,也无法弄清楚。
预先感谢您的帮助!
编辑:使用 CSound 很简单,但是如何通过 Visual Studio 控制 CSound?
In C++ compiled with Visual Studio 2008 or 2010, am looking for a way to play a note on an instrument and then be able to change the pitch of that note (i.e. from a C to a D), its volume, and even the instrument that plays it in a program.
I know this sounds a lot like MIDI, but I'm not sure how to accomplish it. I would be fine or even prefer using a 3rd party program such as CSound, but again don't know how and cannot figure it out.
Thanks in advance for your help!
Edit: Using CSound is easy, but how do I control CSound through Visual Studio?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要一个 C++ 音乐合成器框架,例如:
通过声卡播放(我认为)所有这些都是可能的。
You need a C++ music synthesizer framework, such as:
playback through soundcard is possible with (I think) all of them.