使用 NAudio 开放音频格式和音频合成
如何使用 Naudio 和 C# 打开不同的音频格式(除了 .mp3 和 .wav)?
如何使用 Naudio 和 C# 创建音频合成?(我的意思是如何获取音频合成所需的声音频率和其他数据)。
PS我看过这个教程系列
http://opensebj。 blogspot.com/2009/02/introduction-to-using-naudio.html
和这个
How can I open different audio formats(except .mp3 and .wav) using Naudio and C#?
How can I create audio synthesis unsing Naudio and C#?(I mean how to get the sound frequency and other data necesary for audio synthesis).
P.S. I've looked at this tutorial series
http://opensebj.blogspot.com/2009/02/introduction-to-using-naudio.html
and this one
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了 MP3 和 WAV 之外,NAudio 还可以使用 AiffFileReader 和 WmaFileReader 类打开 AIFF 和 WMA 文件。除此之外,您还必须编写自己的 WaveStream 派生类来读取其他格式。
请参阅我的教程 如何在 NAudio 中播放正弦波,它将向您展示如何开始在 NAudio 中进行音频合成的基础知识。
In addition to MP3 and WAV, NAudio can also open AIFF and WMA files with the AiffFileReader and WmaFileReader classes. Beyond that, you will have to write your own WaveStream derived class to read other formats.
See my tutorial on how to play a sine wave in NAudio, which will show you the basics of how to get started with audio synthesis in NAudio.