1

因此,我正在尝试编写一个文本到语音的程序,该程序将逐渐变得更快,在句子之间留下更少的间隙,并最终过度分层并同时运行多个命令,因此它变得一团糟。它目前是一个控制台应用程序,我有相关的参考资料

我如何调整它以将每个说话命令作为自己的实例运行的任何想法。我是否必须重新学习如何使用多线程才能使其工作?

任何帮助都会很棒,在它循环的那一刻(迭代次数不是太重要),我试图在每次之后减少停顿,但无法让一个说话命令覆盖之前的内容。

for (int i = 0; i < 100; i++)
            {
                if (Console.KeyAvailable == true)
                {
                    break;
                }
                else
                {
                    if (i == 0)
                    {
                        string commandLine2 = "Hello darkness my old friend";
                        SpeechSynthesizer s = new SpeechSynthesizer();
                        s.SelectVoiceByHints(VoiceGender.Female, VoiceAge.Child);
                        s.Speak(commandLine2);
                        commandLine2 = "Its been a while where should we begin";
                        //Thread.Sleep(1000);
                        s.Speak(commandLine2);
                    }
                    else
                    {
                        string commandLine2 = "Hello darkness my old friend";
                    SpeechSynthesizer s = new SpeechSynthesizer();
                    s.SelectVoiceByHints(VoiceGender.Female, VoiceAge.Child);
                    s.Speak(commandLine2);
                    commandLine2 = "Its been a while where should we begin";
                    //Thread.Sleep(1000 / i);
                    s.Speak(commandLine2);
                }

            }
        }
4

1 回答 1

1

最后我只是使用了多线程。这一切都涌向我

 for (int i = 1; i < 100; i++)
        {
            Thread t1 = new Thread(mySpeach);
            t1.Name = "Thread1";
            t1.Start();
            Thread.Sleep(2000 / i);
            if (Console.KeyAvailable == true)
            {
                t1.Abort();
                break;
            }
        }

//other methods were here


    public static void typing()
        {
        string a = "Hello darkness my old friend\nIts been a while where should we begin";
        for (int i = 0; i < a.Length; i++)
        {
            Random rnd = new Random();
            Console.Write(a[i]);
            if (Console.KeyAvailable == true)
            {
                break;
            }
            Thread.Sleep(rnd.Next(50, 100));
        }
        Console.WriteLine("");
    }

    public static void mySpeach()
    {
        string commandLine2 = "Hello darkness my old friend";
        Thread t2 = new Thread(typing);

        t2.Name = "Thread2";

        t2.Start();
        SpeechSynthesizer s = new SpeechSynthesizer();
        s.SelectVoiceByHints(VoiceGender.Female, VoiceAge.Child);
        s.Speak(commandLine2);
        commandLine2 = "Its been a while where should we begin";
        if (Console.KeyAvailable == true)
        {
            return;
        }
        s.Speak(commandLine2);
        Thread.Sleep(1000);
    }
于 2020-11-26T09:53:14.173 回答