File size: 877 Bytes
f2d8fa0
346d904
701d40f
 
f2d8fa0
60ace2e
c786385
f2d8fa0
 
5cd1297
346d904
60ace2e
f95538c
cd55957
 
f2d8fa0
 
65eff34
f2d8fa0
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import gradio as gr
from PIL import Image
import os
token = os.environ.get('HF_TOKEN')
whisper_to_gpt = gr.Blocks.load(name="spaces/fffiloni/whisper-to-chatGPT")
tts = gr.Interface.load(name="spaces/Flux9665/IMS-Toucan")
talking_face = gr.Blocks.load(name="spaces/fffiloni/one-shot-talking-face", api_key=token)

def infer(audio):
    gpt_response = whisper_to_gpt(audio, "translate", fn_index=0)
    #print(gpt_response)
    audio_response = tts(gpt_response[1], "English Text", "English Accent", "English Speaker's Voice", fn_index=0)
    #image = Image.open(r"wise_woman_portrait.png")
    portrait = talking_face("wise_woman_portrait.png", audio_response, fn_index=0)
    return audio_response, portrait

inputs = gr.Audio(source="microphone",type="filepath")
outputs = [gr.Audio(), gr.Video()]

demo = gr.Interface(fn=infer, inputs=inputs, outputs=outputs)
demo.launch()