小夢windows phone 8.1開發:語音朗讀

來源:互聯網
上載者:User

標籤:style   blog   http   color   os   使用   ar   div   代碼   

使用SpeechSynthesizer類可以實現文本朗讀功能,位於 Windows.Media.SpeechSynthesis命名空間。有了它我們就可以實現有聲小說了,是不是很爽。下面給出一個將文字區塊的內容朗讀出來的例子,記得在應用的功能裡要勾選 麥克風。

關於SpeechSynthesizer類的詳細說明請參考:

http://technet.microsoft.com/zh-cn/sysinternals/system.speech.synthesis.speechsynthesizer(v=vs.95).aspx

mainpage頁面配置如下:

<Grid><StackPanel ><TextBox x:Name=”txtToSay” Width=”300″ Height=”90″ Margin=”0 2 0 12″ TextWrapping=”Wrap”/><Button Content=”開始朗讀” HorizontalAlignment=”Center” Click=”OnClick”/></StackPanel><MediaElement x:Name=”mdPlayer” Width=”0″ Height=”0″ AutoPlay=”True”/></Grid>

後台代碼如下:

private async void OnClick(object sender, RoutedEventArgs e){if (string.IsNullOrWhiteSpace(txtToSay.Text)) return;SpeechSynthesizer speech = new SpeechSynthesizer();//執行個體化對象// 朗讀文本SpeechSynthesisStream stream = await speech.SynthesizeTextToStreamAsync(txtToSay.Text);//將文字框的內容轉化為語音流輸出if (stream != null){this.mdPlayer.SetSource(stream, stream.ContentType);//將語音流設為MediaElement的源。}}

關於MediaElement的SetSource方法請查看:http://msdn.microsoft.com/zh-cn/library/windows/apps/xaml/br244338.aspx

小夢windows phone 8.1開發:語音朗讀

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.