| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- using System.Collections.Specialized;
- using WebSocketSpace;
- namespace FunASRWSClient_Offline
- {
- /// <summary>
- /// /主程序入口
- /// </summary>
- public class Program
- {
- private static void Main()
- {
- WSClient_Offline m_funasrclient = new WSClient_Offline();
- m_funasrclient.FunASR_Main();
- }
- }
- public class WSClient_Offline
- {
- public static string host = "0.0.0.0";
- public static string port = "10095";
- public static string hotword = null;
- private static CWebSocketClient m_websocketclient = new CWebSocketClient();
- [STAThread]
- public async void FunASR_Main()
- {
- loadconfig();
- loadhotword();
- //初始化通信连接
- string errorStatus = string.Empty;
- string commstatus = ClientConnTest();
- if (commstatus != "通信连接成功")
- errorStatus = commstatus;
- //程序初始监测异常--报错、退出
- if (errorStatus != string.Empty)
- {
- //报错方式待加
- Environment.Exit(0);
- }
- //循环输入推理文件
- while (true)
- {
- Console.WriteLine("请输入转录文件路径:");
- string filepath = Console.ReadLine();
- if (filepath != string.Empty && filepath != null)
- {
- await m_websocketclient.ClientSendFileFunc(filepath);
- }
- }
- }
- private void loadconfig()
- {
- string filePath = "config.ini";
- NameValueCollection settings = new NameValueCollection();
- using (StreamReader reader = new StreamReader(filePath))
- {
- string line;
- while ((line = reader.ReadLine()) != null)
- {
- // 忽略空行和注释
- if (string.IsNullOrEmpty(line) || line.StartsWith(";") || line.StartsWith("#"))
- continue;
- // 解析键值对
- int equalsIndex = line.IndexOf('=');
- if (equalsIndex > 0)
- {
- string key = line.Substring(0, equalsIndex).Trim();
- string value = line.Substring(equalsIndex + 1).Trim();
- if (key == "host")
- host = value;
- else if (key == "port")
- port = value;
- }
- }
- }
- }
- static void loadhotword()
- {
- string filePath = "hotword.txt";
- try
- {
- // 使用 StreamReader 打开文本文件
- using (StreamReader sr = new StreamReader(filePath))
- {
- string line;
- // 逐行读取文件内容
- while ((line = sr.ReadLine()) != null)
- {
- hotword += line;
- hotword += " ";
- }
- }
- }
- catch (Exception ex)
- {
- Console.WriteLine("读取文件时发生错误:" + ex.Message);
- }
- finally
- {
- if (hotword.Length > 0 && hotword[hotword.Length - 1] == ' ')
- hotword = hotword.Substring(0,hotword.Length - 1);
- }
- }
- private static string ClientConnTest()
- {
- //WebSocket连接状态监测
- Task<string> websocketstatus = m_websocketclient.ClientConnTest();
- if (websocketstatus != null && websocketstatus.Result.IndexOf("成功") == -1)
- return websocketstatus.Result;
- return "通信连接成功";
- }
- }
- }
|