Hev832 commited on
Commit
e9f4fe9
·
verified ·
1 Parent(s): d0a2403

Update steganography.py

Browse files
Files changed (1) hide show
  1. steganography.py +5 -2
steganography.py CHANGED
@@ -84,7 +84,10 @@ def image_to_spectrogram_audio(image_path, sr=22050):
84
  return img2audio_path
85
 
86
  # Gradio interface
87
- with gr.Blocks(title='Audio Steganography', theme=gr.themes.Soft(primary_hue="green", secondary_hue="green", spacing_size="sm", radius_size="lg")) as iface:
 
 
 
88
 
89
  with gr.Group():
90
  with gr.Row(variant='panel'):
@@ -176,4 +179,4 @@ with gr.Blocks(title='Audio Steganography', theme=gr.themes.Soft(primary_hue="gr
176
  outputs=[decoded_image]
177
  )
178
 
179
- iface.launch(share=True)
 
84
  return img2audio_path
85
 
86
  # Gradio interface
87
+ with gr.Blocks(
88
+ title='Audio Steganography',
89
+ theme="Hev832/Applio",
90
+ ) as iface:
91
 
92
  with gr.Group():
93
  with gr.Row(variant='panel'):
 
179
  outputs=[decoded_image]
180
  )
181
 
182
+ iface.launch(share=True, debug=True)