llm-asr-tts/6_Inference_funasr.py

29 lines
698 B
Python
Raw Normal View History

2025-03-16 16:41:41 +00:00
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
# Copyright FunASR (https://github.com/alibaba-damo-academy/FunASR). All Rights Reserved.
# MIT License (https://opensource.org/licenses/MIT)
import sys
from funasr import AutoModel
model_dir = r".\QWen\pretrained_models\SenseVoiceSmall"
input_file = (
"https://isv-data.oss-cn-hangzhou.aliyuncs.com/ics/MaaS/ASR/test_audio/asr_example_zh.wav"
)
model = AutoModel(
model=model_dir,
trust_remote_code=True,
)
res = model.generate(
input=input_file,
cache={},
language="auto", # "zn", "en", "yue", "ja", "ko", "nospeech"
use_itn=False,
)
print(res)
# import pdb; pdb.set_trace()
print(res[0]['text'].split(">")[-1])