fffiloni commited on
Commit
40ad620
1 Parent(s): 4d4221d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -54,10 +54,10 @@ with gr.Blocks(css=css) as demo:
54
  with gr.Column(elem_id="col-container"):
55
  gr.HTML(title)
56
  audio_in = gr.Audio(label="Voice in to clone", source="microphone", type="filepath")
57
- transcript = gr.Textbox(label="Manual transcription of your audio", info="The audio you want to clone will get truncated so 5-10 seconds is probably fine, existing samples that I checked are around 7 seconds, then you'll need to manually transcript your audio below:")
58
  name = gr.Textbox(label="Name your voice")
59
 
60
- generate_btn = gr.Button("Clone voice !")
61
 
62
  npz_file = gr.File(label=".npz file")
63
 
 
54
  with gr.Column(elem_id="col-container"):
55
  gr.HTML(title)
56
  audio_in = gr.Audio(label="Voice in to clone", source="microphone", type="filepath")
57
+ transcript = gr.Textbox(label="Manual transcription of your audio", placeholder="Please transcribe audio here", info="The audio you want to clone will get truncated so 5-10 seconds is probably fine, existing samples that I checked are around 7 seconds, then you'll need to manually transcribe your audio below:")
58
  name = gr.Textbox(label="Name your voice")
59
 
60
+ generate_btn = gr.Button("Get NPZ file: Clone voice !")
61
 
62
  npz_file = gr.File(label=".npz file")
63