如何使用Dart SpeechSynthesis类?

时间:2013-06-28 05:14:30

标签: dart text-to-speech speech-synthesis

我无法使用Dart SpeechSynthesis类构造SpeechSynthesis对象。 Dart编辑抱怨道:“类'SpeechSynthesis'没有默认构造函数”。

1 个答案:

答案 0 :(得分:1)

这是一个有效的例子:

import 'dart:html';
main() {
  var u = new SpeechSynthesisUtterance();
  u.text = 'Hello World';
  u.lang = 'en-US';
  u.rate = 1.2;
  window.speechSynthesis.speak(u);
}

有关API的更多详细信息,请参阅the SpeechSynthesis Interface