UWP-电子音读出文字

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了UWP-电子音读出文字相关的知识,希望对你有一定的参考价值。

原文:UWP-电子音读出文字

源码: https://github.com/lindexi/Markdown


代码

private async void speech(string str, MediaElement media_element)
{
SpeechSynthesizer synthesizer = new SpeechSynthesizer();
SpeechSynthesisStream stream = await synthesizer.SynthesizeTextToStreamAsync(str);
media_element.SetSource(stream, stream.ContentType);
media_element.Play();
}

实例化SpeechSynthesizer,使用SynthesizeTextToStreamAsync把文本变为流

可以使用MediaElement播放,MediaElement播放需要把流和格式放到MediaElement

media_element.Play();

<MediaElement Grid.Row=“0” x:Name=“mediaelement” AutoPlay=“True” Volume=“1.0” />

Volume 声音

参考:http://www.cnblogs.com/tcjiaan/

以上是关于UWP-电子音读出文字的主要内容,如果未能解决你的问题,请参考以下文章

如何隐藏抖音界面的按钮和文字 - 抖音文字遮挡和重叠的解决办法

[UWP]用Win2D实现镂空文字

请教下制作抖音纯文字图片视频还有一边讲话配音要用到哪些软件?

UWP 手绘视频创作工具技术分享系列 - 文字的解析和绘制

[UWP]用Win2D实现镂空文字

JSP读出ckeditor编辑的文字时,如何去掉格式?