SpeechSynthesizer.SynthesizeSsmlToStreamAsync(String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Générez et contrôlez de manière asynchrone la sortie vocale à partir d’une chaîne SSML (Speech Synthesis Markup Language) version 1.1 .
public:
virtual IAsyncOperation<SpeechSynthesisStream ^> ^ SynthesizeSsmlToStreamAsync(Platform::String ^ Ssml) = SynthesizeSsmlToStreamAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<SpeechSynthesisStream> SynthesizeSsmlToStreamAsync(winrt::hstring const& Ssml);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<SpeechSynthesisStream> SynthesizeSsmlToStreamAsync(string Ssml);
function synthesizeSsmlToStreamAsync(Ssml)
Public Function SynthesizeSsmlToStreamAsync (Ssml As String) As IAsyncOperation(Of SpeechSynthesisStream)
Paramètres
- Ssml
-
String
Platform::String
winrt::hstring
Texte modifié SSML à parler.
Retours
SpeechSynthesisStream qui représente la parole générée à partir du langage SSML (Speech Synthesis Markup Language) version 1.1.
- Attributs
Remarques
Les caractéristiques vocales, la prononciation, le volume, la hauteur, la vitesse, l’accentuation, etc. peuvent être personnalisées via le langage SSML (Speech Synthesis Markup Language) version 1.1.
Pour générer des paroles à partir de texte brut, consultez SynthétiserTextToStreamAsync.