3

我已经为 SAPI5 Eliska22k 安装了捷克语语音。它在 Windows 7 上运行良好。现在我有 Windows 8 并且在调用Speak方法时它给了我Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

我也尝试使用SpeechSynthesizer.NET System.Speech。它还可以看到已安装的语音 Eliska22k(在 W7 上它仅适用于 SAPI5),但它不会写入任何不会启动的异常。在SelectVoice("Eliska22k")方法程序上退出。

默认语音在 SAPI5 中也可以在默认语音中正常工作。

我已经安装了SpeechPad,它可以很好地与语音 Eliska22k 配合使用。我找不到问题所在。

SpeechSynthesizer voice = new SpeechSynthesizer();

voice.SelectVoice("Eliska22k");// here program just exit without any exeption
voice.Rate = 2;

voice.SpeakAsync("Ahoj, jak se máš?");

SAPI5

SpVoice voice = new SpVoice();

voice.Voice = voice.GetVoices().Item(6);// index of eliska voice
voice.Rate = 2;

voice.Speak("Ahoj, jak se máš?", SpeechVoiceSpeakFlags.SVSFlagsAsync);//here occurs exeption

谢谢你的想法。

4

2 回答 2

0

不确定这是否是答案,但是每当我尝试重复使用相同的媒体元素来一遍又一遍地播放不同的流时(例如,用户正在按钮混搭),我都会遇到同样的错误。解决方案是使用显式 GC.Collect()。尽管拥有 5 个媒体元素也不错,因为它似乎可以通过停止和重新启动音频来加快速度。

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices.WindowsRuntime;
using System.Threading.Tasks;
using Windows.Foundation;
using Windows.Foundation.Collections;
using Windows.Media.SpeechSynthesis;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Controls.Primitives;
using Windows.UI.Xaml.Data;
using Windows.UI.Xaml.Input;
using Windows.UI.Xaml.Media;
using Windows.UI.Xaml.Navigation;

// The Blank Page item template is documented at http://go.microsoft.com/fwlink/?LinkId=234238

namespace SpeechMark
{
  /// <summary>
  /// An empty page that can be used on its own or navigated to within a Frame.
  /// </summary>
  public sealed partial class BlankPage1 : Page
  {
    public BlankPage1()
    {
      this.InitializeComponent();

      m_button.Click += m_button_Click;

      m_audioPlayerPool = new MediaElement[5];
      for(int index = 0; index < m_audioPlayerPool.Length; index++)
      {
        var audioPlayer = new MediaElement();
        audioPlayer.AutoPlay = true;
        m_audioPlayerPool[index] = audioPlayer;
        m_grid.Children.Add(audioPlayer);
      }

      m_textToSpeech = new SpeechSynthesizer();
    }

    async void m_button_Click(object sender, RoutedEventArgs e)
    {
      m_button.IsEnabled = false;
      if (m_audioPlayer != null)
      {
        m_audioPlayer.Stop();
      }

      if (m_stream != null)
      {
        m_stream.Dispose();
        m_stream = null;
      }

      GC.Collect();

      m_audioPlayer = m_audioPlayerPool[m_nextAudioPlayerToUse];
      m_nextAudioPlayerToUse = (m_nextAudioPlayerToUse + 1) % m_audioPlayerPool.Length;

      string ssml = "<speak version=\"1.0\" xmlns=\"http://www.w3.org/2001/10/synthesis\" xml:lang=\"en\"><voice gender=\"female\" xml:lang=\"en\"><prosody rate=\"1\">how are you doing</prosody><mark name=\"utteranceComplete\"/></voice></speak>";
      m_stream = await m_textToSpeech.SynthesizeSsmlToStreamAsync(ssml);
      m_audioPlayer.SetSource(m_stream, m_stream.ContentType);

      m_button.IsEnabled = true;
    }

    private MediaElement m_audioPlayer;
    private MediaElement[] m_audioPlayerPool;
    private int m_nextAudioPlayerToUse = 0;
    private SpeechSynthesizer m_textToSpeech;
    public SpeechSynthesisStream m_stream { get; set; }
  }
}

xml:

<Page
    x:Class="SpeechMark.BlankPage1"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="using:SpeechMark"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d">

    <Grid x:Name="m_grid" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
    <Button x:Name="m_button" Height="128" Margin="446,303,0,337" Width="256"/>
  </Grid>
</Page>
于 2013-12-10T07:48:19.827 回答
0

据我所知,该软件尚未与 Windows 8 兼容。

Xtranormal 开发了这些语音包,以将其文本作为附加功能添加到动画软件中。

查看PC World对该软件的评论表明,他们的 2.5 测试版的规格适用于 Windows XP 和 Windows Vista。

请注意,PCWorld 审查是在 2010 年进行的。在此审查之后集成了 Windows 7 支持。

注意到 Windows 7 发布的滞后以及该软件升级到 Windows 7 兼容性也加强了我的论点,即 Windows 8 还没有准备好。(windows 7 发布 5 个月后 pc world 审查了这个软件,它与 windows 7 不兼容,windows 8 还没有推出那么久,升级软件需要时间;))

在他们自己的网站上查看他们的技术细节,建议最迟使用 Windows 7 的推荐设置。

这对我来说表明他们尚未将其更新到 Windows 8。

(作为一个额外的脚注,YouTube 上没有关于这个软件的 Windows 8 的单一教程,但有很多其他操作系统的教程,人们最近制作了关于任何东西的教程,并且缺少这个操作系统的教程(尽管应用程序在2 年的期限再次表明,还没有 Windows 8 ;)

脚注上的注释,Software Informer 是一个网站,几乎所有可用的软件都经过审查,旧版本收到了 2 - 3 条评论,而最新版本提交了 260 条评论,因此已知的受欢迎程度有所提高)

脚注 2;我专注于该软件的原因是因为声音最初是为该软件设计的。因此,如果语音要升级,他们打算首先使用的软件可能会先升级)

你认为他们只会在他们的网站上说他们支持什么操作系统:/

于 2013-01-10T15:39:33.250 回答