fffiloni commited on
Commit
38a2466
1 Parent(s): 701d40f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,14 +4,14 @@ import os
4
  token = os.environ.get('HF_TOKEN')
5
  whisper_to_gpt = gr.Blocks.load(name="spaces/fffiloni/whisper-to-chatGPT")
6
  tts = gr.Interface.load(name="spaces/StevenLimcorn/fastspeech2-TTS")
7
- talking_face = gr.Interface.load(name="spaces/fffiloni/one-shot-talking-face", api_key=token)
8
 
9
  def infer(audio):
10
  gpt_response = whisper_to_gpt(audio, "translate", fn_index=0)
11
  #print(gpt_response)
12
  audio_response = tts(gpt_response[1], "Fastspeech2 + Melgan", fn_index=0)
13
  image = Image.open(r"wise_woman_portrait.png")
14
- portrait = talking_face(image, audio_response)
15
  return audio_response, portrait
16
 
17
  inputs = gr.Audio(source="microphone",type="filepath")
 
4
  token = os.environ.get('HF_TOKEN')
5
  whisper_to_gpt = gr.Blocks.load(name="spaces/fffiloni/whisper-to-chatGPT")
6
  tts = gr.Interface.load(name="spaces/StevenLimcorn/fastspeech2-TTS")
7
+ talking_face = gr.Blocks.load(name="spaces/fffiloni/one-shot-talking-face", api_key=token)
8
 
9
  def infer(audio):
10
  gpt_response = whisper_to_gpt(audio, "translate", fn_index=0)
11
  #print(gpt_response)
12
  audio_response = tts(gpt_response[1], "Fastspeech2 + Melgan", fn_index=0)
13
  image = Image.open(r"wise_woman_portrait.png")
14
+ portrait = talking_face(image, audio_response, fn_index=0)
15
  return audio_response, portrait
16
 
17
  inputs = gr.Audio(source="microphone",type="filepath")