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

相关文章

Spring Security 基于表达式的权限控制

前言 spring security 3.0已经可以使用spring el表达式来控制授权,允许在表达式中使用复杂的布尔逻辑来控制访问的权限。 常见的表达式 Spring Security可用表达式对象的基类是SecurityExpressionRoot。 表达式描述hasRole([role])用户拥有制定的角色时返回true (Spring security默认会带有ROLE_前缀),去

2. c#从不同cs的文件调用函数

1.文件目录如下: 2. Program.cs文件的主函数如下 using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using System.Windows.Forms;namespace datasAnalysis{internal static

阿里开源语音识别SenseVoiceWindows环境部署

SenseVoice介绍 SenseVoice 专注于高精度多语言语音识别、情感辨识和音频事件检测多语言识别: 采用超过 40 万小时数据训练,支持超过 50 种语言,识别效果上优于 Whisper 模型。富文本识别:具备优秀的情感识别,能够在测试数据上达到和超过目前最佳情感识别模型的效果。支持声音事件检测能力,支持音乐、掌声、笑声、哭声、咳嗽、喷嚏等多种常见人机交互事件进行检测。高效推

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time

C#实战|大乐透选号器[6]:实现实时显示已选择的红蓝球数量

哈喽,你好啊,我是雷工。 关于大乐透选号器在前面已经记录了5篇笔记,这是第6篇; 接下来实现实时显示当前选中红球数量,蓝球数量; 以下为练习笔记。 01 效果演示 当选择和取消选择红球或蓝球时,在对应的位置显示实时已选择的红球、蓝球的数量; 02 标签名称 分别设置Label标签名称为:lblRedCount、lblBlueCount

用命令行的方式启动.netcore webapi

用命令行的方式启动.netcore web项目 进入指定的项目文件夹,比如我发布后的代码放在下面文件夹中 在此地址栏中输入“cmd”,打开命令提示符,进入到发布代码目录 命令行启动.netcore项目的命令为:  dotnet 项目启动文件.dll --urls="http://*:对外端口" --ip="本机ip" --port=项目内部端口 例: dotnet Imagine.M

AI(文生语音)-TTS 技术线路探索学习:从拼接式参数化方法到Tacotron端到端输出

AI(文生语音)-TTS 技术线路探索学习:从拼接式参数化方法到Tacotron端到端输出 在数字化时代,文本到语音(Text-to-Speech, TTS)技术已成为人机交互的关键桥梁,无论是为视障人士提供辅助阅读,还是为智能助手注入声音的灵魂,TTS 技术都扮演着至关重要的角色。从最初的拼接式方法到参数化技术,再到现今的深度学习解决方案,TTS 技术经历了一段长足的进步。这篇文章将带您穿越时

Java 后端接口入参 - 联合前端VUE 使用AES完成入参出参加密解密

加密效果: 解密后的数据就是正常数据: 后端:使用的是spring-cloud框架,在gateway模块进行操作 <dependency><groupId>com.google.guava</groupId><artifactId>guava</artifactId><version>30.0-jre</version></dependency> 编写一个AES加密

控制反转 的种类

之前对控制反转的定义和解释都不是很清晰。最近翻书发现在《Pro Spring 5》(免费电子版在文章最后)有一段非常不错的解释。记录一下,有道翻译贴出来方便查看。如有请直接跳过中文,看后面的原文。 控制反转的类型 控制反转的类型您可能想知道为什么有两种类型的IoC,以及为什么这些类型被进一步划分为不同的实现。这个问题似乎没有明确的答案;当然,不同的类型提供了一定程度的灵活性,但

基于人工智能的智能家居语音控制系统

目录 引言项目背景环境准备 硬件要求软件安装与配置系统设计 系统架构关键技术代码示例 数据预处理模型训练模型预测应用场景结论 1. 引言 随着物联网(IoT)和人工智能技术的发展,智能家居语音控制系统已经成为现代家庭的一部分。通过语音控制设备,用户可以轻松实现对灯光、空调、门锁等家电的控制,提升生活的便捷性和舒适性。本文将介绍如何构建一个基于人工智能的智能家居语音控制系统,包括环境准备