0

テキスト読み上げを使用するために、iPhone用のニュアンスドラゴンモバイルSDKを使用しています。
読んだテキストは少し速いので、遅くしたいので、ユーザーは単語を学ぶことができます。私の目標は、テキストを少し遅くすることです。これは、SSML と prosody タグで非常にうまく機能します。次のコードを参照してください。

<prosody rate="slow">This is the text which is spoken slow,
but the voice sounds distorted/warped/ghastly</prosody>

声は歪んで、歪んで、ぞっとするように聞こえます。
私が何を意味するか理解していますか?はっきりとした声ゆっくり話すテキスト
を得るにはどうすればよいですか?

4

1 に答える 1

2

ここから引用: http://www.w3.org/TR/speech-synthesis/#S3.2.4

rate: a change in the speaking rate for the contained text. Legal values are: 
a relative change or "x-slow", "slow", "medium", "fast", "x-fast", or "default". 
Labels "x-slow" through "x-fast" represent a sequence of monotonically non-decreasing
speaking rates. When a number is used to specify a relative change it acts as a 
multiplier of the default rate. For example, a value of 1 means no change in speaking 
rate, a value of 2 means a speaking rate twice the default rate, and a value of 0.5 
means a speaking rate of half the default rate. The default rate for a voice depends on 
the language and dialect and on the personality of the voice. The default rate for a 
voice should be such that it is experienced as a normal speaking rate for the voice when 
reading aloud text. Since voices are processor-specific, the default rate will be as 
well.
于 2012-04-26T16:05:03.487 に答える