Politrees commited on
Commit
9a178d1
·
verified ·
1 Parent(s): 9b5df2b

Update steganography.py

Browse files
Files changed (1) hide show
  1. 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.Row():
167
- generate_btn = gr.Button("Generate", variant="primary", scale=2)
168
- converted_voice = gr.Audio(label='Converted Voice', interactive=False, scale=9)
169
- output_format = gr.Dropdown(['mp3', 'flac', 'wav'], value='mp3', label='File Format', allow_custom_value=False, filterable=False, scale=1)
 
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)