本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
套用新聞傳送器語音
人們會根據情境使用不同的說話風格。例如,輕鬆的交談聽起來與電視或廣播新聞非常不同。由於標準語音的產生方式,它們無法產生不同的說話風格。不過,神經語音可以。他們可以接受特定說話樣式的訓練,其中會改變並強調該樣式中固有的某些語音部分。
除了預設的神經語音之外,Amazon Polly 還提供新聞傳送器發言樣式,使用神經系統產生電視或廣播新聞傳送器樣式的語音。Newscaster 樣式適用於美國英文 (en-US) 的 Matthew 和 Joanna 語音、美國西班牙文 (es-US) 的 Lupe 語音,以及英文 (en-GB) 的 Amy 語音。
若要使用新聞播報員風格,您必須先選擇神經引擎,然後在您的輸入文字中使用以下步驟所述的語法。
- Console
-
套用 Newscaster 樣式
-
在 開啟 Amazon Polly 主控台https://console.aws.amazon.com/polly/。
-
請確定您使用支援 AWS 神經語音的區域。
-
在 Text-to-Speech頁面上,針對引擎 ,選擇神經 。
-
選擇您要使用的語言和語音。只有 Matthew 和 Joanna for US English (en-US)、Lupe for US Spanish (es-US) 和 Amy for British English (en-GB) 可在新聞傳送器語音中使用。
-
開啟 SSML。
-
使用 Newscaster SSML 樣式語法將輸入文字新增至您的 text-to-speech請求。
<amazon:domain name="news">text
</amazon:domain>
例如,您可以使用新聞播報員標籤,如下所示:
<speak>
<amazon:domain name="news">
From the Tuesday, April 16th, 1912 edition of The Guardian newspaper:
The maiden voyage of the White Star liner Titanic, the largest ship ever launched
ended in disaster.
The Titanic started her trip from Southampton for New York on Wednesday. Late on
Sunday night she struck an iceberg off the Grand Banks of Newfoundland. By
wireless telegraphy she sent out signals of distress, and several liners were
near enough to catch and respond to the call.
</amazon:domain>
</speak>
-
選擇接聽 。
- AWS CLI
-
套用 Newscaster 樣式
-
在您的API請求中,將引擎參數包含 neural
值:
--engine neural
-
使用 Newscaster SSML 樣式語法將輸入文字新增至您的API請求。
<amazon:domain name="news">text
</amazon:domain>
例如,您可以使用新聞播報員標籤,如下所示:
<speak>
<amazon:domain name="news">
From the Tuesday, April 16th, 1912 edition of The Guardian newspaper:
The maiden voyage of the White Star liner Titanic, the largest ship ever launched
ended in disaster.
The Titanic started her trip from Southampton for New York on Wednesday. Late on
Sunday night she struck an iceberg off the Grand Banks of Newfoundland. By
wireless telegraphy she sent out signals of distress, and several liners were
near enough to catch and respond to the call.
</amazon:domain>
</speak>
如需 的詳細資訊SSML,請參閱 支援的SSML標籤。