当前位置:   article > 正文

paddlespeech asr语音转录文字;FunASR使用;sherpa 实时、离线、rtsp流语音转录

funasr

1、paddlespeech asr语音转录文字

参考:
https://github.com/PaddlePaddle/PaddleSpeech

安装后运行可能会numpy相关报错;可能是python和numpy版本高的问题,我这里最终解决是python 3.10 numpy 1.22.0;

pip install paddlepaddle -i https://mirror.baidu.com/pypi/simple
pip install paddlespeech
  • 1
  • 2

1)代码

模型默认下载保存位置:C:\Users\loong.paddlespeech\models下

from paddlespeech.cli.asr.infer import ASRExecutor
asr = ASRExecutor()
result = asr(audio_file="zh.wav")  ##第一次运行会首先下载自动模型
print(result)
  • 1
  • 2
  • 3
  • 4

在这里插入图片描述

###标点恢复

!paddlespeech text --task punc --input 今天的天气真不错啊你下午有空吗我想约你一起去吃饭

##或
from paddlespeech.cli.text.infer import TextExecutor
text_punc = TextExecutor()
result = text_punc(text="今天的天气真不错啊你下午有空吗我想约你一起去吃饭")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
<
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/88227
推荐阅读
相关标签
  

闽ICP备14008679号