C#: transcribe WAV file to text (speech-to-text) with System.Speech namespaces

前端 未结 5 835
名媛妹妹
名媛妹妹 2021-02-06 06:15

How do you use the .NET speech namespace classes to convert audio in a WAV file to textual form which I can display on the screen or save to file?

I am looking for some

5条回答
  •  生来不讨喜
    2021-02-06 06:34

    The classes in System.Speech are for text to speech (primarily an acessibility feature).

    You are looking for voice recognition. There is the System.Speech.Recognition namespace available since .Net 3.0. It uses the Windows Desktop Speech engine. This might get you started, but I guess there are better engines out there.

    Voice recognition is very complicated and hard to do right, there are also some commercial products available.

提交回复
热议问题