sudo-soldier commited on
Commit
5696011
·
verified ·
1 Parent(s): e63c244

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -76,7 +76,7 @@ with gr.Blocks(css="""
76
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
77
  <h1><i class="fas fa-music"></i>&nbsp;PYTR</h1>
78
  <p>Python YouTube Ringtones. Enter a YouTube URL or record audio to create ringtones.</p>
79
- <p><a href="https://ringtone.JesseJesse.xyz" target="_blank">JesseJesse.xyz</a></p>
80
  """)
81
 
82
  with gr.Row():
@@ -100,7 +100,7 @@ with gr.Blocks(css="""
100
  with gr.Column(scale=1, min_width=250):
101
  gr.HTML('<label>&nbsp;iPhone Ringtone</label>')
102
  iphone_ringtone = gr.File(label="Apple")
103
- 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)
104
 
105
  process_button.click(process_youtube_or_audio, inputs=[youtube_url, audio_record], outputs=[mp3_download, iphone_ringtone])
106
 
 
76
  <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
77
  <h1><i class="fas fa-music"></i>&nbsp;PYTR</h1>
78
  <p>Python YouTube Ringtones. Enter a YouTube URL or record audio to create ringtones.</p>
79
+ <p><a href="https://ringtones.JesseJesse.xyz" target="_blank">ringtones.JesseJesse.xyz</a></p>
80
  """)
81
 
82
  with gr.Row():
 
100
  with gr.Column(scale=1, min_width=250):
101
  gr.HTML('<label>&nbsp;iPhone Ringtone</label>')
102
  iphone_ringtone = gr.File(label="Apple")
103
+ iphone_instructions = gr.Textbox(label="install", placeholder="Open the Garage Band App, long-press on the Ringtone file, select share, choose ringtone, and click export to complete the ringtone import.", lines=2)
104
 
105
  process_button.click(process_youtube_or_audio, inputs=[youtube_url, audio_record], outputs=[mp3_download, iphone_ringtone])
106