我正在使用Microsoft语音合成,并希望将输出重定向到我选择的输出音频设备。
到目前为止,我有以下代码:
SpeechSynthesizer speechSynthesizer = new SpeechSynthesizer();
speechSynthesizer.SpeakAsync("Yea it works!");
目前我正在使用:
speechSynthesizer.SetOutputToDefaultAudioDevice();
但我确实想把它发送到我选择的设备上。我正在寻找一个cscore示例,用于指导我选择的输出设备。我看到我可以使用:
speechSynthesizer.SetOutputToWaveStream();
这需要一个“流”,但我不知道如何提供它。
感谢。
答案 0 :(得分:3)
您可以创建MemoryStream并将其附加到CSCore的WaveOut课程。 WaveOut需要IWaveSource参数,因此您可以使用CSCore的MediaFoundationDecoder转换来自SpeechSynthesizer的wave流。我做了一个小的控制台应用程序来说明:
using System;
using System.IO;
using System.Speech.Synthesis;
using CSCore;
using CSCore.MediaFoundation;
using CSCore.SoundOut;
namespace WaveOutTest
{
class Program
{
static void Main()
{
using (var stream = new MemoryStream())
using (var speechEngine = new SpeechSynthesizer())
{
Console.WriteLine("Available devices:");
foreach (var device in WaveOutDevice.EnumerateDevices())
{
Console.WriteLine("{0}: {1}", device.DeviceId, device.Name);
}
Console.WriteLine("\nEnter device for speech output:");
var deviceId = (int)char.GetNumericValue(Console.ReadKey().KeyChar);
speechEngine.SetOutputToWaveStream(stream);
speechEngine.Speak("Testing 1 2 3");
using (var waveOut = new WaveOut { Device = new WaveOutDevice(deviceId) })
using (var waveSource = new MediaFoundationDecoder(stream))
{
waveOut.Initialize(waveSource);
waveOut.Play();
waveOut.WaitForStopped();
}
}
}
}
}