From 6f48509e8df5262b11a1c6dba530adebd7440ebe Mon Sep 17 00:00:00 2001
From: 雾聪 <wucong.lyb@alibaba-inc.com>
Date: 星期三, 27 十二月 2023 12:55:12 +0800
Subject: [PATCH] update funasr-wss-client

---
 runtime/websocket/bin/funasr-wss-client.cpp |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/runtime/websocket/bin/funasr-wss-client.cpp b/runtime/websocket/bin/funasr-wss-client.cpp
index b495117..c4d933c 100644
--- a/runtime/websocket/bin/funasr-wss-client.cpp
+++ b/runtime/websocket/bin/funasr-wss-client.cpp
@@ -189,10 +189,10 @@
 		funasr::Audio audio(1);
         int32_t sampling_rate = audio_fs;
         std::string wav_format = "pcm";
-		if(funasr::IsTargetFile(wav_path.c_str(), "wav")){
-			if(!audio.LoadWav(wav_path.c_str(), &sampling_rate, false))
-				return ;
-		}else if(funasr::IsTargetFile(wav_path.c_str(), "pcm")){
+        if (funasr::IsTargetFile(wav_path.c_str(), "wav")) {
+            if (!audio.LoadWav(wav_path.c_str(), &sampling_rate, false)) 
+                return;
+        } else if(funasr::IsTargetFile(wav_path.c_str(), "pcm")){
 			if (!audio.LoadPcmwav(wav_path.c_str(), &sampling_rate, false))
 				return ;
 		}else{
@@ -341,7 +341,10 @@
 };
 
 int main(int argc, char* argv[]) {
-
+#ifdef _WIN32
+    #include <windows.h>
+    SetConsoleOutputCP(65001);
+#endif
     google::InitGoogleLogging(argv[0]);
     FLAGS_logtostderr = true;
 

--
Gitblit v1.9.1