您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

22 行
615B

  1. """
  2. google voice service
  3. """
  4. import subprocess
  5. import speech_recognition
  6. from voice.voice import Voice
  7. class GoogleVoice(Voice):
  8. recognizer = speech_recognition.Recognizer()
  9. def __init__(self):
  10. pass
  11. def voiceToText(self, voice_file):
  12. new_file = voice_file.replace('.mp3', '.wav')
  13. subprocess.call('ffmpeg -i ' + voice_file + ' -acodec pcm_s16le -ac 1 -ar 16000 ' + new_file, shell=True)
  14. with speech_recognition.AudioFile(new_file) as source:
  15. audio = self.recognizer.record(source)
  16. return self.recognizer.recognize_google(audio, language='zh-CN')