Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

openai_voice.py 673B

123456789101112131415161718192021222324252627
  1. """
  2. google voice service
  3. """
  4. import json
  5. import openai
  6. from config import conf
  7. from common.log import logger
  8. from voice.voice import Voice
  9. class OpenaiVoice(Voice):
  10. def __init__(self):
  11. openai.api_key = conf().get('open_ai_api_key')
  12. def voiceToText(self, voice_file):
  13. logger.debug(
  14. '[Openai] voice file name={}'.format(voice_file))
  15. file = open(voice_file, "rb")
  16. reply = openai.Audio.transcribe("whisper-1", file)
  17. text = reply["text"]
  18. logger.info(
  19. '[Openai] voiceToText text={} voice file name={}'.format(text, voice_file))
  20. return text
  21. def textToVoice(self, text):
  22. pass