码迷,mamicode.com
首页 > Windows程序 > 详细

win10 UWP 你写我读

时间:2016-02-29 12:54:21      阅读:466      评论:0      收藏:0      [点我收藏+]

标签:

想要电脑读出我们写的内容,在win10,很简单
其实这个技术在windows7就有了,但是现在win10让写出一个你写我读的软件很简单。
我们需要一个类MediaElement来播放,因为windows10的Markdown软件用的不是很好,所有我自己写一个。
这个软件我用了你写我读,https://github.com/lindexi/Markdown
技术分享

点击技术分享 读出文本

在使用SpeechSynthesizer需要代码功能点麦克风

技术分享

技术分享

代码我放在model
代码很少就可以你写我读

        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/

win10 UWP 你写我读

标签:

原文地址:http://blog.csdn.net/lindexi_gd/article/details/50717077

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!