0
  1. 如何使用 Naudio 和 C# 打开不同的音频格式(.mp3 和 .wav 除外)?

  2. 如何在不使用 Naudio 和 C# 的情况下创建音频合成?(我的意思是如何获取音频合成所需的声音频率和其他数据)。

PS我看过这个教程系列

http://opensebj.blogspot.com/2009/02/introduction-to-using-naudio.html

和这个

http://www.giawa.com/tutorials/?p=19o

4

1 回答 1

0
  1. 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.

  2. 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.

于 2011-06-02T22:33:53.473 回答