LoginSignup
40
41

More than 5 years have passed since last update.

無料で日本語音声合成

Last updated at Posted at 2013-01-06

.NetFramework3.0から音声合成、音声認識ができますが日本語は標準で入っていません。
有料で買うこともできますが、無料でもMicrosoftから出ています。

以上の準備後、.NetFramework3.0以上で、System.Speechを参照追加し、下記のようにできます。

C#
var syn = new System.Speech.Synthesis.SpeechSynthesizer();
syn.SelectVoice("Microsoft Server Speech Text to Speech Voice (ja-JP, Haruka)");
syn.Speak("こんにちは");

参考用 GitHub SpeechTest

40
41
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
40
41