PromptBuilder.AppendBreak Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Inserisce un'interruzione (sospensione) nel contenuto di un oggetto PromptBuilder.
Overload
AppendBreak() |
Aggiunge un'interruzione all'oggetto PromptBuilder. |
AppendBreak(PromptBreak) |
Aggiunge un'interruzione all'oggetto PromptBuilder e ne specifica la durata. |
AppendBreak(TimeSpan) |
Aggiunge un'interruzione della durata specificata all'oggetto PromptBuilder. |
AppendBreak()
Aggiunge un'interruzione all'oggetto PromptBuilder.
public:
void AppendBreak();
public void AppendBreak ();
member this.AppendBreak : unit -> unit
Public Sub AppendBreak ()
Esempio
Nell'esempio seguente viene compilato un prompt contenente due frasi separate da un'interruzione e viene visualizzata la richiesta al dispositivo audio predefinito nel computer.
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();
// Build a prompt with two sentences separated by a break.
PromptBuilder builder = new PromptBuilder(
new System.Globalization.CultureInfo("en-US"));
builder.AppendText(
"Tonight's movie showings in theater A are at 5:45, 7:15, and 8:45.");
builder.AppendBreak();
builder.AppendText(
"Tonight's movie showings in theater B are at 5:15, 7:30, and 9:15.");
// Speak the prompt.
synth.Speak(builder);
}
Console.WriteLine();
Console.WriteLine("Press any key to exit...");
Console.ReadKey();
}
}
}
Commenti
Questo metodo non specifica una durata per l'interruzione. determinerà SpeechSynthesizer un valore di durata in base al contesto linguistico.
Si applica a
AppendBreak(PromptBreak)
Aggiunge un'interruzione all'oggetto PromptBuilder e ne specifica la durata.
public:
void AppendBreak(System::Speech::Synthesis::PromptBreak strength);
public void AppendBreak (System.Speech.Synthesis.PromptBreak strength);
member this.AppendBreak : System.Speech.Synthesis.PromptBreak -> unit
Public Sub AppendBreak (strength As PromptBreak)
Parametri
- strength
- PromptBreak
Indica la durata dell'interruzione.
Esempio
L'esempio seguente compila un prompt contenente due frasi separate da un'interruzione e invia l'output a un file WAV per la riproduzione.
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.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");
// Build a prompt with two sentences separated by a break.
PromptBuilder builder = new PromptBuilder(
new System.Globalization.CultureInfo("en-US"));
builder.AppendText(
"Tonight's movie showings in theater A are at 5:45, 7:15, and 8:45");
builder.AppendBreak(PromptBreak.Medium);
builder.AppendText(
"Tonight's movie showings in theater B are at 5:15, 7:15, and 9:15");
// 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();
}
}
}
Commenti
I valori nell'enumerazione rappresentano un intervallo di intervalli PromptBreak di separazione (pause) tra i limiti di parola. Il motore di sintesi vocale determina la durata esatta dell'intervallo. Quando viene richiesta un'interruzione, uno di questi valori viene passato al motore di sintesi vocale (TTS), che contiene un mapping tra questi valori e i valori di interruzione dei millisecondi corrispondenti.
Si applica a
AppendBreak(TimeSpan)
Aggiunge un'interruzione della durata specificata all'oggetto PromptBuilder.
public:
void AppendBreak(TimeSpan duration);
public void AppendBreak (TimeSpan duration);
member this.AppendBreak : TimeSpan -> unit
Public Sub AppendBreak (duration As TimeSpan)
Parametri
- duration
- TimeSpan
Tempo in tick, in cui un tick è uguale a 100 nanosecondi.
Esempio
L'esempio seguente crea un prompt contenente due frasi separate da un'interruzione di 15.000.000 di tick (1,5 secondi) e pronuncia la richiesta al dispositivo audio predefinito nel computer.
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();
// Build a prompt with two sentences separated by a break.
PromptBuilder builder = new PromptBuilder(
new System.Globalization.CultureInfo("en-US"));
builder.AppendText(
"Tonight's movie showings in theater A are at 5:45, 7:15, and 8:45");
builder.AppendBreak(new TimeSpan(15000000));
builder.AppendText(
"Tonight's movie showings in theater B are at 5:15, 7:15, and 9:15");
// Speak the prompt.
synth.Speak(builder);
}
Console.WriteLine();
Console.WriteLine("Press any key to exit...");
Console.ReadKey();
}
}
}
Commenti
Un'interruzione può essere usata per controllare le pause o altri limiti prosodici tra le parole. Un'interruzione è facoltativa. Se non è presente un'interruzione, il sintetizzatore determina l'interruzione tra le parole a seconda del contesto linguistico.