Spaces:
Running
Running
Update steganography.py
Browse files- steganography.py +5 -4
steganography.py
CHANGED
@@ -163,9 +163,10 @@ with gr.Blocks(title='Audio Steganography', css="footer{display:none !important}
|
|
163 |
decode_button.click(gradio_decode_fn, inputs=[upload_audio], outputs=[decoded_image])
|
164 |
|
165 |
with gr.Tab("test"):
|
166 |
-
with gr.
|
167 |
-
|
168 |
-
|
169 |
-
|
|
|
170 |
|
171 |
txt2spec.launch(share=True)
|
|
|
163 |
decode_button.click(gradio_decode_fn, inputs=[upload_audio], outputs=[decoded_image])
|
164 |
|
165 |
with gr.Tab("test"):
|
166 |
+
with gr.Group():
|
167 |
+
with gr.Row():
|
168 |
+
generate_btn = gr.Button("Generate", variant="primary", scale=2)
|
169 |
+
converted_voice = gr.Audio(label='Converted Voice', interactive=False, scale=9)
|
170 |
+
output_format = gr.Dropdown(['mp3', 'flac', 'wav'], value='mp3', label='File Format', scale=1)
|
171 |
|
172 |
txt2spec.launch(share=True)
|