sudo-soldier commited on
Commit
a9a9eb4
·
verified ·
1 Parent(s): 2245e22

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -94,10 +94,12 @@ with gr.Blocks(css="""
94
  with gr.Column(scale=1, min_width=250):
95
  gr.HTML('<label>&nbsp;Android Ringtone</label>')
96
  mp3_download = gr.File(label="Android")
 
97
 
98
  with gr.Column(scale=1, min_width=250):
99
  gr.HTML('<label>&nbsp;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>&nbsp;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>&nbsp;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