LameMP3FileWriter: Unsupported encoding format MuLaw Parameter name: format
问题 Trying to convert a 12 year old wav file to mp3, 8K, 8bit, Mono-channel, Mu-Law format, WAV and I am getting this error in LameMP3FileWriter line: LameMP3FileWriter: Unsupported encoding format MuLaw Parameter name: format static void Main(string[] args) { string wavFilePath = @"C:\temp\Message.wav"; string mp3FilePath = @"C:\temp\Message.mp3"; if (!File.Exists(mp3FilePath)) { byte[] bytearrwav = File.ReadAllBytes(wavFilePath); byte[] bytearrmp3 = ConvertWavToMp3(bytearrwav); File