From 592920331caa25bbba8b4379f23dc2ddd589ae22 Mon Sep 17 00:00:00 2001
From: 游雁 <zhifu.gzf@alibaba-inc.com>
Date: 星期四, 25 一月 2024 20:26:23 +0800
Subject: [PATCH] v1.0.3

---
 runtime/websocket/bin/funasr-wss-client-2pass.cpp |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/runtime/websocket/bin/funasr-wss-client-2pass.cpp b/runtime/websocket/bin/funasr-wss-client-2pass.cpp
index ec3da35..6533dd5 100644
--- a/runtime/websocket/bin/funasr-wss-client-2pass.cpp
+++ b/runtime/websocket/bin/funasr-wss-client-2pass.cpp
@@ -192,9 +192,7 @@
     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(), "pcm")) {
       if (!audio.LoadPcmwav(wav_path.c_str(), &sampling_rate, false)) return;
     } else {
       wav_format = "others";
@@ -475,7 +473,8 @@
 
 int main(int argc, char* argv[]) {
 #ifdef _WIN32
-    SetConsoleOutputCP(65001);
+  #include <windows.h>
+  SetConsoleOutputCP(65001);
 #endif
   google::InitGoogleLogging(argv[0]);
   FLAGS_logtostderr = true;

--
Gitblit v1.9.1