alterar o formato de wav para mp3 no fluxo de memória no NAudio

Oi lá iam tentar converter texto em fala (wav) no memorystream convertê-lo em mp3 e, em seguida, reproduzi-lo na página de usuários.por isso preciso de ajuda o que fazer a seguir?

aqui está o meu código asmx:

[WebMethod]
public byte[] StartSpeak(string Word)
{
    MemoryStream ms = new MemoryStream();
    using (System.Speech.Synthesis.SpeechSynthesizer synhesizer = new System.Speech.Synthesis.SpeechSynthesizer())
    {
        synhesizer.SelectVoiceByHints(System.Speech.Synthesis.VoiceGender.NotSet, System.Speech.Synthesis.VoiceAge.NotSet, 0, new System.Globalization.CultureInfo("en-US"));
        synhesizer.SetOutputToWaveStream(ms);
        synhesizer.Speak(Word);
    }
    return ms.ToArray();

    }

Obrigado.

questionAnswers(5)

yourAnswerToTheQuestion