Update app.py
Browse files
app.py
CHANGED
@@ -16,7 +16,8 @@ def transcribe_video(d_id_key: str, elv_key: str, full_text: str):
|
|
16 |
demo = gr.Interface(fn=transcribe_video, inputs=[
|
17 |
gr.Textbox(label="D-Id API Key",placeholder="Paste your D-Id",type='password'),
|
18 |
gr.Textbox(label="Elevenlabs API Keys",placeholder="Paste Elevenlabs",type='password'),
|
19 |
-
gr.Textbox(lines=4, label=" Please input the text you wish to generate in order to make the photo speak.", placeholder="English Text here")
|
20 |
-
|
|
|
21 |
|
22 |
demo.launch()
|
|
|
16 |
demo = gr.Interface(fn=transcribe_video, inputs=[
|
17 |
gr.Textbox(label="D-Id API Key",placeholder="Paste your D-Id",type='password'),
|
18 |
gr.Textbox(label="Elevenlabs API Keys",placeholder="Paste Elevenlabs",type='password'),
|
19 |
+
gr.Textbox(lines=4, label=" Please input the text you wish to generate in order to make the photo speak.", placeholder="English Text here"),
|
20 |
+
gr.Image(label="Upload a photo of a face here, and generate a talking animation.", type="pil")
|
21 |
+
], outputs="text",title="Bring your images to life with the talking animation feature now!")
|
22 |
|
23 |
demo.launch()
|