Spaces:
Paused
Paused
File size: 1,009 Bytes
391222d e7d2d44 391222d bab5004 93da42a 391222d 1c0a21f 41a66f3 1c0a21f e7d2d44 391222d 1b28bbd ba26d1c 391222d 1c0a21f 46e11dd 93da42a 1c0a21f 7c1649d 391222d 159f2f8 391222d 0f006b9 5300b13 391222d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
import gradio as gr
import os
#img_to_text = gr.Blocks.load(name="spaces/pharma/CLIP-Interrogator")
text_to_music = gr.Interface.load("spaces/fffiloni/text-2-music")
def get_prompts(uploaded_image):
print("calling Clip interrogator ...")
#prompt = img_to_text(uploaded_image, fn_index=1)[0]
prompt = "trying to find the right method index"
print(f"""βββ
Got prompt result:
{prompt}
βββββββ
""")
music_result = get_music(prompt)
return music_result
def get_music(prompt):
print("calling now mubert ....")
result = text_to_music(prompt, fn_index=0)
print(result)
#output = os.path.join(result)
#print(output)
return result
with gr.Blocks() as demo:
with gr.Row():
with gr.Column():
input_img = gr.Image(type="filepath")
generate = gr.Button("Generate Music from Image")
with gr.Column():
music_output = gr.Textbox(label="Result")
generate.click(get_prompts, inputs=[input_img], outputs=[music_output])
demo.launch() |