Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -94,10 +94,12 @@ with gr.Blocks(css="""
|
|
94 |
with gr.Column(scale=1, min_width=250):
|
95 |
gr.HTML('<label> Android Ringtone</label>')
|
96 |
mp3_download = gr.File(label="Android")
|
|
|
97 |
|
98 |
with gr.Column(scale=1, min_width=250):
|
99 |
gr.HTML('<label> iPhone Ringtone</label>')
|
100 |
iphone_ringtone = gr.File(label="Apple")
|
|
|
101 |
|
102 |
process_button.click(process_youtube_or_audio, inputs=[youtube_url, audio_record], outputs=[mp3_download, iphone_ringtone])
|
103 |
|
|
|
94 |
with gr.Column(scale=1, min_width=250):
|
95 |
gr.HTML('<label> Android Ringtone</label>')
|
96 |
mp3_download = gr.File(label="Android")
|
97 |
+
android_instructions = gr.Textbox(label="install", placeholder="Place the downloaded .mp3 file in the ringtones folder", lines=4)
|
98 |
|
99 |
with gr.Column(scale=1, min_width=250):
|
100 |
gr.HTML('<label> iPhone Ringtone</label>')
|
101 |
iphone_ringtone = gr.File(label="Apple")
|
102 |
+
iphone_instructions = gr.Textbox(label="install", placeholder="Open garage band, long-press on the download, select share, then choose ringtone and click export to complete.", lines=4)
|
103 |
|
104 |
process_button.click(process_youtube_or_audio, inputs=[youtube_url, audio_record], outputs=[mp3_download, iphone_ringtone])
|
105 |
|