From e2e7536b1aaa8611f4ecd767495cd28088fa46aa Mon Sep 17 00:00:00 2001
From: shixian.shi <shixian.shi@alibaba-inc.com>
Date: 星期五, 03 三月 2023 19:19:13 +0800
Subject: [PATCH] Merge remote-tracking branch 'refs/remotes/origin/dev_timestamp' into dev_timestamp debug

---
 funasr/bin/modelscope_infer.py |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/funasr/bin/modelscope_infer.py b/funasr/bin/modelscope_infer.py
index 3be6d03..bc24340 100755
--- a/funasr/bin/modelscope_infer.py
+++ b/funasr/bin/modelscope_infer.py
@@ -82,6 +82,9 @@
             wav_id, wav_path = line.strip().split()
             logging.info("decoding, utt_id: ['{}']".format(wav_id))
             rec_result = inference_pipeline(audio_in=wav_path)
-            text = rec_result["text"]
+            if 'text' in rec_result:
+                text = rec_result["text"]
+            else:
+                text = ''
             f_out.write(wav_id + " " + text + "\n")
             logging.info("best hypo: {} \n".format(text))

--
Gitblit v1.9.1