Creating a ASP.NET application converting text to speech

后端 未结 5 841
野趣味
野趣味 2020-12-02 00:57

I seek some insight in creating an application that converts text to speech in ASP.NET. From my initial research, it appears that:

  1. MS SAPI requires the clie

5条回答
  •  春和景丽
    2020-12-02 01:28

    I achieved this by using codeBehind to run a javascript function that runs the text-to-speech command:

    codeBehind:

    Page.ClientScript.RegisterStartupScript(
    GetType(), 
    "anythingHere", 
    "nameOfFunction();", 
    true);
    

    javascript:

    
    

提交回复
热议问题