Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -146,6 +146,10 @@ with gr.Blocks() as demo:
|
|
146 |
|
147 |
# Step 2: Generate Voice
|
148 |
with gr.Tab("Step 2: Generate Voice"):
|
|
|
|
|
|
|
|
|
149 |
with gr.Row():
|
150 |
speaker = gr.Textbox(label="Voice Style (optional)", placeholder="E.g., male, female, or neutral.")
|
151 |
|
@@ -174,6 +178,10 @@ with gr.Blocks() as demo:
|
|
174 |
|
175 |
# Step 4: Blend Audio
|
176 |
with gr.Tab("Step 4: Blend Audio"):
|
|
|
|
|
|
|
|
|
177 |
with gr.Row():
|
178 |
ducking = gr.Checkbox(label="Enable Ducking", value=True)
|
179 |
|
|
|
146 |
|
147 |
# Step 2: Generate Voice
|
148 |
with gr.Tab("Step 2: Generate Voice"):
|
149 |
+
gr.Markdown("""
|
150 |
+
**Note:** Voice-over generation is currently inactive.
|
151 |
+
This feature will be available in future updates!
|
152 |
+
""")
|
153 |
with gr.Row():
|
154 |
speaker = gr.Textbox(label="Voice Style (optional)", placeholder="E.g., male, female, or neutral.")
|
155 |
|
|
|
178 |
|
179 |
# Step 4: Blend Audio
|
180 |
with gr.Tab("Step 4: Blend Audio"):
|
181 |
+
gr.Markdown("""
|
182 |
+
**Note:** Audio blending functionality is currently inactive.
|
183 |
+
This feature will be available in future updates!
|
184 |
+
""")
|
185 |
with gr.Row():
|
186 |
ducking = gr.Checkbox(label="Enable Ducking", value=True)
|
187 |
|