yeyupiaoling / PPASR

基于PaddlePaddle实现端到端中文语音识别,从入门到实战,超简单的入门案例,超实用的企业项目。支持当前最流行的DeepSpeech2、Conformer、Squeezeformer模型
Apache License 2.0
807 stars 128 forks source link

fix warning message #116

Closed liuxiaocs7 closed 1 year ago

liuxiaocs7 commented 1 year ago

This logic doesn't seem correct.

if self.playing:
    tkinter.messagebox.showwarning('警告', '正在录音,无法播放音频!')

After:

if self.playing:
    tkinter.messagebox.showwarning('警告', '正在播放音频,无法录音!')
yeyupiaoling commented 1 year ago

感谢贡献