只是想知道是否有人可以推荐一个将C#格式转换为未压缩的.NET库?如果没有.NET库,C库也可以正常工作。我正在编写一个需要未压缩音频样本的应用程序。
感谢您的帮助, 本
答案 0 :(得分:1)
以下是一些如何使用C#库将音频从一种格式转换为另一种格式的示例:
http://www.codeproject.com/KB/audio-video/Aumplib.aspx
答案 1 :(得分:1)
How to convert compressed sound stream to PCM uncompressed stream in .NET
DsReader dr = new DsReader("sample.amr");
IntPtr formatPcm = dr.ReadFormat();
byte[] dataPcm = dr.ReadData();
dr.Close();