C#语音播报(通过CoreAudioAPI完成对扬声器的控制)

2024-05-13 09:04

本文主要是介绍C#语音播报(通过CoreAudioAPI完成对扬声器的控制),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1,效果:

  • 作用:
  1. 可对当前内容(例如此例中的重量信息)进行语音合成播报 。
  2. 可设置系统扬声器音量与状态(是否静音),同时根据扬声器状态同步更新当前控件状态与值,实现强制PC扬声器按照指定的音量进行播报,杜绝人为静音的可能。

2,引入相关程序集,命名空间。

  • 程序集

        微软语音合成程序集:System.Speech

        第三方程序集:CoreAudioAPI(为方便使用,进行了部分修改包装)

  • 命名空间:
using System.Speech.Synthesis;
using CoreAudioAPIs;

3,代码:

<Grid><Grid.ColumnDefinitions><ColumnDefinition Width="112*"/><ColumnDefinition Width="320*"/><ColumnDefinition Width="85*"/></Grid.ColumnDefinitions><Grid.RowDefinitions><RowDefinition Height="59*"/><RowDefinition Height="51*"/><RowDefinition Height="77*"/><RowDefinition Height="43*"/><RowDefinition Height="32*"/><RowDefinition Height="58*"/></Grid.RowDefinitions><TextBlock Text="重量:" FontSize="32" HorizontalAlignment="Right" VerticalAlignment="Center" Margin="0,8"></TextBlock><TextBox Grid.Column="1" VerticalContentAlignment="Center" x:Name="txtWeight" FontSize="30"></TextBox><ComboBox x:Name="combo01" Grid.Column="2" VerticalContentAlignment="Center" FontSize="32"><ComboBoxItem FontSize="32" IsSelected="True">KG</ComboBoxItem><ComboBoxItem FontSize="32">T</ComboBoxItem><ComboBoxItem FontSize="32">G</ComboBoxItem></ComboBox><Button x:Name="btnPlay" Content="播报" FontSize="25" Grid.Row="1" Grid.Column="1" Margin="20,3" Click="btnPlay_Click"></Button><Grid Grid.Row="2" Grid.Column="1"><Grid.RowDefinitions><RowDefinition ></RowDefinition><RowDefinition ></RowDefinition></Grid.RowDefinitions><TextBlock x:Name="txtStatus" HorizontalAlignment="Center" VerticalAlignment="Center" Text="{Binding Status}" Foreground="{Binding StatusForeground}" FontSize="16"></TextBlock><TextBlock FontSize="24" Grid.Row="1"  Text="PC扬声器设置" HorizontalAlignment="Center" VerticalAlignment="Bottom"></TextBlock></Grid><TextBlock Text="播放音量:" Grid.Row="3" FontSize="16" VerticalAlignment="Center" HorizontalAlignment="Right" Margin="0,11,0,10"></TextBlock><Slider Grid.Row="3" Grid.Column="1" ValueChanged="slider01_ValueChanged" Minimum="0" VerticalAlignment="Center" Maximum="100" x:Name="slider01" SmallChange="1" LargeChange="5" TickPlacement="BottomRight" IsSnapToTickEnabled="True" Margin="0,11,0,10"></Slider><TextBlock Grid.Row="3" Grid.Column="2" FontSize="16" VerticalAlignment="Center" Margin="10,0" DockPanel.Dock="Left" Text="{Binding ElementName=slider01 ,Path=Value}"></TextBlock><CheckBox Grid.Row="4" x:Name="muteCheck01" Click="muteCheck01_Checked" HorizontalAlignment="Right" VerticalAlignment="Center" FontSize="16">静音</CheckBox></Grid>
 public partial class MainWindow : Window, System.ComponentModel.INotifyPropertyChanged{VolumeControl volumeControl = new VolumeControl();public event PropertyChangedEventHandler PropertyChanged;SpeechSynthesizer speeker = new SpeechSynthesizer();public MainWindow(){InitializeComponent();volumeControl.VolumeStateChange += VolumeControl_VolumeStateChange;slider01.Value = Volume;muteCheck01.IsChecked = Mute;this.DataContext = this;Status = "准备就绪!";StatusForeground = new SolidColorBrush(Colors.Green);}public bool Mute{get{return volumeControl.IsMuted;}set{volumeControl.IsMuted = value;OnPropertyChanged(nameof(Mute));}}public int Volume{get{return volumeControl.Volume;}set{volumeControl.Volume = value;OnPropertyChanged(nameof(Volume));}}string status;public string Status{get{return status;}set{status = value;OnPropertyChanged(nameof(Status));}}Brush statusForeground = new SolidColorBrush(Colors.Black);public Brush StatusForeground{set{statusForeground = value;OnPropertyChanged(nameof(statusForeground));}get{return statusForeground;}}private void VolumeControl_VolumeStateChange(bool mute, int volumeValue){Dispatcher.Invoke(() =>{//移除注册,否则更新控件时将出现循环,这也是不用绑定的原因slider01.ValueChanged -= slider01_ValueChanged;muteCheck01.Checked -= muteCheck01_Checked;this.muteCheck01.IsChecked = mute;slider01.Value = volumeValue;//重新注册slider01.ValueChanged += slider01_ValueChanged;muteCheck01.Checked += muteCheck01_Checked;});}private void slider01_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e){Volume = (int)slider01.Value;}private void muteCheck01_Checked(object sender, RoutedEventArgs e){Mute = muteCheck01.IsChecked.HasValue ? muteCheck01.IsChecked.Value : false;}private void btnPlay_Click(object sender, RoutedEventArgs e){PromptBuilder builder = new PromptBuilder();builder.AppendText("当前重量:", PromptVolume.Loud);builder.AppendBreak(PromptBreak.Medium);PromptStyle style = new PromptStyle();style.Emphasis = PromptEmphasis.Strong;style.Rate = PromptRate.Medium;style.Volume = PromptVolume.ExtraLoud;builder.StartStyle(style);builder.AppendTextWithHint(txtWeight.Text.Trim(), SayAs.NumberCardinal);builder.EndStyle();string str = "";switch (combo01.Text){case "KG":str = "千克";break;case "G":str = "克";break;default:str = "吨";break;}builder.AppendBreak(PromptBreak.Small);builder.AppendText(str, PromptEmphasis.Strong);SpeechBroadcasting(builder);}async void SpeechBroadcasting(PromptBuilder builder){Status = "播报中.....";StatusForeground = new SolidColorBrush(Colors.Orange);await Task.Run(() =>{//耗时长speeker.Speak(builder);}).ContinueWith(t =>{Dispatcher.Invoke(() =>{Status = "播报完成!";StatusForeground = new SolidColorBrush(Colors.BlueViolet);});System.Threading.Thread.Sleep(1000);});Status = "准备就绪!";StatusForeground = new SolidColorBrush(Colors.Green);}void OnPropertyChanged(string propertyName){PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));}}

4,Demo链接:

https://download.csdn.net/download/lingxiao16888/89298014

这篇关于C#语音播报(通过CoreAudioAPI完成对扬声器的控制)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/985262

相关文章

在C#中获取端口号与系统信息的高效实践

《在C#中获取端口号与系统信息的高效实践》在现代软件开发中,尤其是系统管理、运维、监控和性能优化等场景中,了解计算机硬件和网络的状态至关重要,C#作为一种广泛应用的编程语言,提供了丰富的API来帮助开... 目录引言1. 获取端口号信息1.1 获取活动的 TCP 和 UDP 连接说明:应用场景:2. 获取硬

C#使用HttpClient进行Post请求出现超时问题的解决及优化

《C#使用HttpClient进行Post请求出现超时问题的解决及优化》最近我的控制台程序发现有时候总是出现请求超时等问题,通常好几分钟最多只有3-4个请求,在使用apipost发现并发10个5分钟也... 目录优化结论单例HttpClient连接池耗尽和并发并发异步最终优化后优化结论我直接上优化结论吧,

C#使用yield关键字实现提升迭代性能与效率

《C#使用yield关键字实现提升迭代性能与效率》yield关键字在C#中简化了数据迭代的方式,实现了按需生成数据,自动维护迭代状态,本文主要来聊聊如何使用yield关键字实现提升迭代性能与效率,感兴... 目录前言传统迭代和yield迭代方式对比yield延迟加载按需获取数据yield break显式示迭

c# checked和unchecked关键字的使用

《c#checked和unchecked关键字的使用》C#中的checked关键字用于启用整数运算的溢出检查,可以捕获并抛出System.OverflowException异常,而unchecked... 目录在 C# 中,checked 关键字用于启用整数运算的溢出检查。默认情况下,C# 的整数运算不会自

C#实现获得某个枚举的所有名称

《C#实现获得某个枚举的所有名称》这篇文章主要为大家详细介绍了C#如何实现获得某个枚举的所有名称,文中的示例代码讲解详细,具有一定的借鉴价值,有需要的小伙伴可以参考一下... C#中获得某个枚举的所有名称using System;using System.Collections.Generic;usi

C# 读写ini文件操作实现

《C#读写ini文件操作实现》本文主要介绍了C#读写ini文件操作实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录一、INI文件结构二、读取INI文件中的数据在C#应用程序中,常将INI文件作为配置文件,用于存储应用程序的

C#实现获取电脑中的端口号和硬件信息

《C#实现获取电脑中的端口号和硬件信息》这篇文章主要为大家详细介绍了C#实现获取电脑中的端口号和硬件信息的相关方法,文中的示例代码讲解详细,有需要的小伙伴可以参考一下... 我们经常在使用一个串口软件的时候,发现软件中的端口号并不是普通的COM1,而是带有硬件信息的。那么如果我们使用C#编写软件时候,如

C#中图片如何自适应pictureBox大小

《C#中图片如何自适应pictureBox大小》文章描述了如何在C#中实现图片自适应pictureBox大小,并展示修改前后的效果,修改步骤包括两步,作者分享了个人经验,希望对大家有所帮助... 目录C#图片自适应pictureBox大小编程修改步骤总结C#图片自适应pictureBox大小上图中“z轴

使用C#代码计算数学表达式实例

《使用C#代码计算数学表达式实例》这段文字主要讲述了如何使用C#语言来计算数学表达式,该程序通过使用Dictionary保存变量,定义了运算符优先级,并实现了EvaluateExpression方法来... 目录C#代码计算数学表达式该方法很长,因此我将分段描述下面的代码片段显示了下一步以下代码显示该方法如

C#实现WinForm控件焦点的获取与失去

《C#实现WinForm控件焦点的获取与失去》在一个数据输入表单中,当用户从一个文本框切换到另一个文本框时,需要准确地判断焦点的转移,以便进行数据验证、提示信息显示等操作,本文将探讨Winform控件... 目录前言获取焦点改变TabIndex属性值调用Focus方法失去焦点总结最后前言在一个数据输入表单