Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 NAudio。在一切都很好之前。但是昨天出现了一个错误:
所有传入通道必须具有相同的格式参数名称:inputStreams.WaveFormat
混合器.AddInputStream(audio32);
我找不到错误原因!
混音器的所有输入必须具有相同的格式。这意味着相同的采样率、相同的位深度和相同数量的通道(不能混合单声道和立体声)。比较mixer.WaveFormat.ToString()和audio32.WaveFormat.ToString()你会发现有什么不同。
mixer.WaveFormat.ToString()
audio32.WaveFormat.ToString()