dividing about into two columns
Browse files
app.py
CHANGED
@@ -1458,24 +1458,27 @@ def ui_full(launch_kwargs):
|
|
1458 |
with gr.Column():
|
1459 |
info = gr.Textbox(label="Audio Info", lines=10, interactive=False)
|
1460 |
with gr.Tab("About"):
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
|
1465 |
-
|
1466 |
-
|
1467 |
-
|
1468 |
-
|
1469 |
-
|
1470 |
-
|
1471 |
-
|
1472 |
-
|
1473 |
-
|
1474 |
-
|
1475 |
-
|
1476 |
-
|
1477 |
-
|
1478 |
-
|
|
|
|
|
|
|
1479 |
|
1480 |
send_gen.click(info_to_params, inputs=[in_audio], outputs=[decoder, struc_prompts, global_prompt, bpm, key, scale, model, dropdown, basemodel, s, prompts[0], prompts[1], prompts[2], prompts[3], prompts[4], prompts[5], prompts[6], prompts[7], prompts[8], prompts[9], repeats[0], repeats[1], repeats[2], repeats[3], repeats[4], repeats[5], repeats[6], repeats[7], repeats[8], repeats[9], mode, duration, topk, topp, temperature, cfg_coef, seed, overlap, channel, sr_select], queue=False)
|
1481 |
reuse_seed.click(fn=lambda x: x, inputs=[seed_used], outputs=[seed], queue=False)
|
|
|
1458 |
with gr.Column():
|
1459 |
info = gr.Textbox(label="Audio Info", lines=10, interactive=False)
|
1460 |
with gr.Tab("About"):
|
1461 |
+
with gr.Row():
|
1462 |
+
with gr.Column():
|
1463 |
+
gen_type = gr.Text(value="music", interactive=False, visible=False)
|
1464 |
+
gen_type_a = gr.Text(value="audio", interactive=False, visible=False)
|
1465 |
+
gr.Markdown(
|
1466 |
+
"""
|
1467 |
+
# Soundscapes by TulipAI
|
1468 |
+
Welcome to Soundscapes - TulipAI’s flagship Audio Storytelling Toolkit. Designed with modern content creators in mind, our AI-driven platform generates audio sound effects in just minutes tailored to your unique needs.
|
1469 |
+
|
1470 |
+
## PERFECT FOR:
|
1471 |
+
|
1472 |
+
- Podcasters aiming to immerse their listeners.
|
1473 |
+
- Audiobooks sound engineers
|
1474 |
+
- Audio engineers seeking that elusive sound.
|
1475 |
+
- Producers wanting to enrich their auditory experience.
|
1476 |
+
- Sound designers craving innovative tools.
|
1477 |
+
- YouTubers desiring to elevate their content.
|
1478 |
+
"""
|
1479 |
+
)
|
1480 |
+
with gr.Column():
|
1481 |
+
gr.Image(shape=(5,5), value = "https://tulipai.co/assets/images/image01.png")
|
1482 |
|
1483 |
send_gen.click(info_to_params, inputs=[in_audio], outputs=[decoder, struc_prompts, global_prompt, bpm, key, scale, model, dropdown, basemodel, s, prompts[0], prompts[1], prompts[2], prompts[3], prompts[4], prompts[5], prompts[6], prompts[7], prompts[8], prompts[9], repeats[0], repeats[1], repeats[2], repeats[3], repeats[4], repeats[5], repeats[6], repeats[7], repeats[8], repeats[9], mode, duration, topk, topp, temperature, cfg_coef, seed, overlap, channel, sr_select], queue=False)
|
1484 |
reuse_seed.click(fn=lambda x: x, inputs=[seed_used], outputs=[seed], queue=False)
|