From 02a3eefb3575fa1883b13c85121b07c415958fd0 Mon Sep 17 00:00:00 2001
From: hnluo <haoneng.lhn@alibaba-inc.com>
Date: 星期二, 07 二月 2023 10:09:51 +0800
Subject: [PATCH] fix audio_in type bug
---
funasr/utils/asr_utils.py | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/funasr/utils/asr_utils.py b/funasr/utils/asr_utils.py
index a6f5ddd..76b20a5 100644
--- a/funasr/utils/asr_utils.py
+++ b/funasr/utils/asr_utils.py
@@ -58,7 +58,7 @@
if r_recog_type is None and audio_in is not None:
# audio_in is wav, recog_type is wav_file
if os.path.isfile(audio_in):
- audio_type = os.path.basename(audio_in).split(".")[1].lower()
+ audio_type = os.path.basename(audio_in).split(".")[-1].lower()
if audio_type in SUPPORT_AUDIO_TYPE_SETS:
r_recog_type = 'wav'
r_audio_format = 'wav'
@@ -128,7 +128,7 @@
def get_sr_from_wav(fname: str):
fs = None
if os.path.isfile(fname):
- audio_type = os.path.basename(fname).split(".")[1].lower()
+ audio_type = os.path.basename(fname).split(".")[-1].lower()
if audio_type in SUPPORT_AUDIO_TYPE_SETS:
if audio_type == "pcm":
fs = None
@@ -140,7 +140,7 @@
for file in dir_files:
file_path = os.path.join(fname, file)
if os.path.isfile(file_path):
- audio_type = os.path.basename(file_path).split(".")[1].lower()
+ audio_type = os.path.basename(file_path).split(".")[-1].lower()
if audio_type in SUPPORT_AUDIO_TYPE_SETS:
fs = get_sr_from_wav(file_path)
elif os.path.isdir(file_path):
@@ -158,7 +158,7 @@
file_path = os.path.join(dir_path, file)
if os.path.isfile(file_path):
if ends == ".wav" or ends == ".WAV":
- audio_type = os.path.basename(file_path).split(".")[1].lower()
+ audio_type = os.path.basename(file_path).split(".")[-1].lower()
if audio_type in SUPPORT_AUDIO_TYPE_SETS:
return True
else:
@@ -178,7 +178,7 @@
for file in dir_files:
file_path = os.path.join(dir_path, file)
if os.path.isfile(file_path):
- audio_type = os.path.basename(file_path).split(".")[1].lower()
+ audio_type = os.path.basename(file_path).split(".")[-1].lower()
if audio_type in SUPPORT_AUDIO_TYPE_SETS:
wav_list.append(file_path)
elif os.path.isdir(file_path):
--
Gitblit v1.9.1