次の方法で共有


PromptBuilder.AppendSsml メソッド

定義

SSML ファイルを PromptBuilder オブジェクトに追加します。

オーバーロード

AppendSsml(String)

指定したパスの SSML ファイルを PromptBuilder オブジェクトに追加します。

AppendSsml(Uri)

指定した URI の SSML ファイルを PromptBuilder オブジェクトに追加します。

AppendSsml(XmlReader)

SSML プロンプトを参照する XMLReader オブジェクトを PromptBuilder オブジェクトに追加します。

AppendSsml(String)

指定したパスの SSML ファイルを PromptBuilder オブジェクトに追加します。

public:
 void AppendSsml(System::String ^ path);
public void AppendSsml (string path);
member this.AppendSsml : string -> unit
Public Sub AppendSsml (path As String)

パラメーター

path
String

追加する SSML ファイルへの完全修飾パス。

次の例では、 PromptBuilder オブジェクトを作成し、メソッドを使用して SSML ファイルの内容を追加し AppendSsml ます。

using System;  
using System.Speech.Synthesis;  

namespace SampleSynthesis  
{  
  class Program  
  {  
    static void Main(string[] args)  
    {  

      // Initialize a new instance of the SpeechSynthesizer.  
      using (SpeechSynthesizer synth = new SpeechSynthesizer())  
      {  

        // Configure the audio output.   
        synth.SetOutputToDefaultAudioDevice();  

        // Create a PromptBuilder object and append a file that defines an SSML prompt.  
        PromptBuilder ssmlFile = new PromptBuilder();  
        ssmlFile.AppendSsml("c:\\test\\Weather.ssml");  

        // Speak the contents of the SSML prompt.  
        synth.Speak(ssmlFile);  
      }  

      Console.WriteLine();  
      Console.WriteLine("Press any key to exit...");  
      Console.ReadKey();  
    }  
  }  
}  

前の例で参照されている SSML ファイルを次に示します。

<?xml version="1.0" encoding="ISO-8859-1"?>  
<speak version="1.0"  
 xmlns="http://www.w3.org/2001/10/synthesis"  
 xml:lang="en-US">  

  <s> The weather forecast for today is partly cloudy with some sun breaks. </s>  

</speak>  

注釈

SSML ファイルは、 Speech 合成マークアップ言語 (SSML) バージョン 1.0 仕様に準拠した XML 形式のファイルである必要があります。

また、を使用して、SSML マークアップを文字列として追加することもでき AppendSsmlMarkup ます。

適用対象

AppendSsml(Uri)

指定した URI の SSML ファイルを PromptBuilder オブジェクトに追加します。

public:
 void AppendSsml(Uri ^ ssmlFile);
public void AppendSsml (Uri ssmlFile);
member this.AppendSsml : Uri -> unit
Public Sub AppendSsml (ssmlFile As Uri)

パラメーター

ssmlFile
Uri

追加する SSML ファイルの完全修飾 URI。

次の例では、 PromptBuilder オブジェクトを作成し、メソッドを使用して SSML ファイルの内容を追加し AppendSsml ます。

using System;  
using System.Speech.Synthesis;  

namespace SampleSynthesis  
{  
  class Program  
  {  
    static void Main(string[] args)  
    {  

      // Initialize a new instance of the SpeechSynthesizer.  
      using (SpeechSynthesizer synth = new SpeechSynthesizer())  
      {  

        // Configure the audio output.   
        synth.SetOutputToDefaultAudioDevice();  

        // Create a PromptBuilder object and append a file that defines an SSML prompt.  
        PromptBuilder ssmlFile = new PromptBuilder();  
        ssmlFile.AppendSsml(new Uri("c:\\test\\Weather.ssml"));  

        // Speak the contents of the SSML prompt.  
        synth.Speak(ssmlFile);  
      }  

      Console.WriteLine();  
      Console.WriteLine("Press any key to exit...");  
      Console.ReadKey();  
    }  
  }  
}  

前の例で参照されている SSML ファイルを次に示します。

<?xml version="1.0" encoding="ISO-8859-1"?>  
<speak version="1.0"  
 xmlns="http://www.w3.org/2001/10/synthesis"  
 xml:lang="en-US">  

  <s> The weather forecast for today is partly cloudy with some sun breaks. </s>  

</speak>  

注釈

SSML ファイルは、 Speech 合成マークアップ言語 (SSML) バージョン 1.0 仕様に準拠した XML 形式のファイルである必要があります。

また、を使用して、SSML マークアップを文字列として追加することもでき AppendSsmlMarkup ます。

適用対象

AppendSsml(XmlReader)

SSML プロンプトを参照する XMLReader オブジェクトを PromptBuilder オブジェクトに追加します。

public:
 void AppendSsml(System::Xml::XmlReader ^ ssmlFile);
public void AppendSsml (System.Xml.XmlReader ssmlFile);
member this.AppendSsml : System.Xml.XmlReader -> unit
Public Sub AppendSsml (ssmlFile As XmlReader)

パラメーター

ssmlFile
XmlReader

追加する XML ファイルの完全修飾名。

次の例では、 PromptBuilder XmlReader Speech 合成マークアップ言語 (SSML) マークアップを含むファイルを参照するオブジェクトからオブジェクトを作成します。

using System;  
using System.Xml;  
using System.IO;  
using System.Speech.Synthesis;  

namespace SampleSynthesis  
{  
  class Program  
  {  
    static void Main(string[] args)  
    {  

      // Initialize a new instance of the SpeechSynthesizer.  
      using (SpeechSynthesizer synth = new SpeechSynthesizer())  
      {  

        // Configure the audio output.   
        synth.SetOutputToWaveFile(@"C:\test\weather.wav");  

        // Create a SoundPlayer instance to play the output audio file.  
        System.Media.SoundPlayer m_SoundPlayer =  
          new System.Media.SoundPlayer(@"C:\test\weather.wav");  

        // Create the path to the SSML file.  
        string weatherFile = Path.GetFullPath("c:\\test\\Weather.xml");  
        PromptBuilder builder = null;  

        // Create an XML Reader from the file, create a PromptBuilder and   
        // append the XmlReader.  
        if (File.Exists(weatherFile))  
        {  
          XmlReader reader = XmlReader.Create(weatherFile);  
          builder = new PromptBuilder();  
          builder.AppendSsml(reader);  
          reader.Close();  
        }  

        // Speak the prompt and play back the output file.  
        synth.Speak(builder);  
        m_SoundPlayer.Play();  
      }  

      Console.WriteLine();  
      Console.WriteLine("Press any key to exit...");  
      Console.ReadKey();  
    }  
  }  
}  

注釈

SSML ファイルは、 Speech 合成マークアップ言語 (SSML) バージョン 1.0 仕様に準拠した XML 形式のファイルである必要があります。

また、を使用して、SSML マークアップを文字列として追加することもでき AppendSsmlMarkup ます。

適用対象