Bils commited on
Commit
d9873e2
·
verified ·
1 Parent(s): 3e99989

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +33 -80
app.py CHANGED
@@ -64,90 +64,43 @@ def get_audioldm_from_caption(caption):
64
  print(f"Error generating audio from caption: {e}")
65
  return None
66
 
67
- css = """
68
- #header-container {
69
- text-align: center;
70
- margin: 20px 0;
71
- }
72
-
73
- #header-title {
74
- font-size: 36px;
75
- font-weight: bold;
76
- margin-bottom: 10px;
77
- color: #333333;
78
- }
79
-
80
- #header-subtitle {
81
- font-size: 18px;
82
- margin-bottom: 20px;
83
- color: #555555;
84
- }
85
-
86
- #main-container {
87
- max-width: 900px;
88
- margin: 0 auto;
89
- padding: 20px;
90
- border-radius: 12px;
91
- background: linear-gradient(135deg, #ffffff, #f0f0f0);
92
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
93
- }
94
-
95
- button.primary-button {
96
- background: linear-gradient(90deg, #007bff, #0056b3);
97
- color: white;
98
- border: none;
99
- padding: 12px 24px;
100
- border-radius: 8px;
101
- font-size: 16px;
102
- cursor: pointer;
103
- font-weight: bold;
104
- transition: transform 0.2s, box-shadow 0.2s;
105
- }
106
-
107
- button.primary-button:hover {
108
- transform: translateY(-3px);
109
- box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
110
- }
111
-
112
- button.primary-button:active {
113
- transform: translateY(0);
114
- box-shadow: none;
115
- }
116
-
117
- #footer-container {
118
- margin-top: 30px;
119
- text-align: center;
120
- color: #666666;
121
- font-size: 14px;
122
- }
123
- """
124
-
125
- with gr.Blocks(css=css) as demo:
126
- with gr.Column(elem_id="header-container"):
127
- gr.HTML("""
128
- <div id="header-title">🎶 Image-to-Sound Generator</div>
129
- <div id="header-subtitle">Transform your images into descriptive captions and immersive soundscapes.</div>
130
- """)
131
-
132
- with gr.Box(elem_id="main-container"):
133
- gr.Markdown("""
134
- ### How It Works
135
- 1. **Upload an Image**: Select an image to analyze.
136
- 2. **Generate Description**: Get a detailed caption describing your image.
137
- 3. **Generate Sound**: Create an audio representation based on the caption.
138
- """)
139
-
140
- image_upload = gr.File(label="Upload Image", type="binary")
141
- generate_description_button = gr.Button("Generate Description", elem_classes="primary-button")
142
- caption_display = gr.Textbox(label="Generated Caption", interactive=False, placeholder="Your image caption will appear here.")
143
- generate_sound_button = gr.Button("Generate Sound", elem_classes="primary-button")
144
- audio_output = gr.Audio(label="Generated Sound Effect", interactive=False)
145
-
146
- with gr.Box(elem_id="footer-container"):
147
  gr.Markdown("""
148
  ## About This App
149
  This application uses advanced machine learning models to transform images into text captions and generate matching sound effects. It's a unique blend of visual and auditory creativity, powered by state-of-the-art AI technology.
150
 
 
 
 
151
 
152
  For inquiries, contact us at [[email protected]](mailto:[email protected]).
153
  """)
 
64
  print(f"Error generating audio from caption: {e}")
65
  return None
66
 
67
+ with gr.Blocks() as demo:
68
+ with gr.Row():
69
+ with gr.Column(scale=1):
70
+ gr.Image(value="https://via.placeholder.com/150", interactive=False, label="App Logo", elem_id="app-logo")
71
+ with gr.Column(scale=5):
72
+ gr.HTML("""
73
+ <div style="text-align: center; font-size: 32px; font-weight: bold; margin-bottom: 10px;">🎶 Image-to-Sound Generator</div>
74
+ <div style="text-align: center; font-size: 16px; color: #6c757d;">Transform your images into descriptive captions and immersive soundscapes.</div>
75
+ """)
76
+
77
+ with gr.Row():
78
+ with gr.Column():
79
+ gr.Markdown("""
80
+ ### How It Works
81
+ 1. **Upload an Image**: Select an image to analyze.
82
+ 2. **Generate Description**: Get a detailed caption describing your image.
83
+ 3. **Generate Sound**: Create an audio representation based on the caption.
84
+ """)
85
+
86
+ with gr.Row():
87
+ with gr.Column(scale=1):
88
+ image_upload = gr.File(label="Upload Image", type="binary")
89
+ generate_description_button = gr.Button("Generate Description", variant="primary")
90
+ with gr.Column(scale=2):
91
+ caption_display = gr.Textbox(label="Generated Caption", interactive=False, placeholder="Your image caption will appear here.")
92
+ generate_sound_button = gr.Button("Generate Sound", variant="primary")
93
+ with gr.Column(scale=1):
94
+ audio_output = gr.Audio(label="Generated Sound Effect", interactive=False)
95
+
96
+ with gr.Row():
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  gr.Markdown("""
98
  ## About This App
99
  This application uses advanced machine learning models to transform images into text captions and generate matching sound effects. It's a unique blend of visual and auditory creativity, powered by state-of-the-art AI technology.
100
 
101
+ ### Powered By
102
+ - [Hugging Face](https://huggingface.co)
103
+ - [Diffusion Models](https://huggingface.co/models)
104
 
105
  For inquiries, contact us at [[email protected]](mailto:[email protected]).
106
  """)