您好,登錄后才能下訂單哦!
這篇文章主要介紹“C#怎么實(shí)現(xiàn)文本轉(zhuǎn)語(yǔ)音功能”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“C#怎么實(shí)現(xiàn)文本轉(zhuǎn)語(yǔ)音功能”文章能幫助大家解決問題。
這種方式的優(yōu)點(diǎn)在于不會(huì)被瀏覽器限制,在js的文本轉(zhuǎn)語(yǔ)音功能中,谷歌高版本的瀏覽器會(huì)阻止通過模擬點(diǎn)擊的自動(dòng)播放,而ie不會(huì)阻止.
操作系統(tǒng):win10或win7(我自己用的是win10 據(jù)說有些閹割版的win7會(huì)報(bào)錯(cuò))
IDE:VS2012 (可高于此版本)
.NET framework 4.0(可高于此版本)
1.C:\Windows文件夾下有Speech
2.控制面板有語(yǔ)音識(shí)別
1.選中要使用該功能的程序右鍵選擇"添加引用"
2.選中"程序集"--"框架"下的System.Speech
需要注意的是:
1.頁(yè)面需要設(shè)置為異步
2.通過委托代理的方式調(diào)用,防止頁(yè)面無響應(yīng)
3.頁(yè)面代碼如下:
aspx:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="yy.aspx.cs" Inherits="yy" Async="true" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head id="Head1" runat="server"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>文字轉(zhuǎn)語(yǔ)音測(cè)試</title> </head> <body> <form id="form1" runat="server"> <div> <asp:Button ID="Button1" runat="server" Text="Button" OnClick="Button1_Click" /> </div> </form> </body> </html>
aspx.cs:
using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Speech.Synthesis; using System.Threading.Tasks; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class yy : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } /// <summary> /// 文字轉(zhuǎn)語(yǔ)音 /// </summary> /// <param name="content">語(yǔ)音內(nèi)容</param> delegate void MyDelegate(string content); string content = "有新的訂單,請(qǐng)及時(shí)處理"; SpeechSynthesizer synthesizer = new SpeechSynthesizer(); //點(diǎn)擊開始按鈕 //開始朗讀 private void speakParagh(string text) { synthesizer.Speak(text); } //朗讀結(jié)束后釋放資源 private void Completed(IAsyncResult result) { synthesizer.SpeakAsyncCancelAll(); } protected void Button1_Click(object sender, EventArgs e) { try { MyDelegate myDelegate = new MyDelegate(speakParagh); //異步調(diào)用委托 myDelegate.BeginInvoke(content, new AsyncCallback(Completed), null); //在啟動(dòng)異步線程后,主線程可以繼續(xù)工作而不需要等待 } catch (Exception ex) { Console.WriteLine("報(bào)錯(cuò):" + ex.Message); } } }
關(guān)于“C#怎么實(shí)現(xiàn)文本轉(zhuǎn)語(yǔ)音功能”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。