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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -94,12 +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
- 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
 
 
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=2)
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="Swipe left and open the Garage Band App. Then long-press on the Ringtone file, select share, choose ringtone, and click export to complete the import.", lines=2)
103
 
104
  process_button.click(process_youtube_or_audio, inputs=[youtube_url, audio_record], outputs=[mp3_download, iphone_ringtone])
105