Politrees commited on
Commit
84098ad
·
verified ·
1 Parent(s): 28d0f7b

Update steganography.py

Browse files
Files changed (1) hide show
  1. steganography.py +7 -0
steganography.py CHANGED
@@ -162,4 +162,11 @@ with gr.Blocks(title='Audio Steganography', css="footer{display:none !important}
162
 
163
  decode_button.click(gradio_decode_fn, inputs=[upload_audio], outputs=[decoded_image])
164
 
 
 
 
 
 
 
 
165
  txt2spec.launch(share=True)
 
162
 
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', scale=9)
170
+ output_format = gr.Dropdown(['mp3', 'flac', 'wav'], value='mp3', label='File Format', allow_custom_value=False, filterable=False, scale=1)
171
+
172
  txt2spec.launch(share=True)