sudo-soldier commited on
Commit
c70cbee
·
verified ·
1 Parent(s): 1d91f2c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -75,7 +75,7 @@ with gr.Blocks(css="""
75
  gr.HTML("""
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>ringtones.JesseJesse.xyz</p>
79
  """)
80
 
81
  with gr.Row():
@@ -92,12 +92,12 @@ with gr.Blocks(css="""
92
 
93
  with gr.Row():
94
  with gr.Column(scale=1, min_width=250):
95
- gr.HTML('<label>&nbsp;Android Device</label>')
96
- mp3_download = gr.File(label="MP3")
97
 
98
  with gr.Column(scale=1, min_width=250):
99
- gr.HTML('<label>&nbsp;Apple iPhone</label>')
100
- iphone_ringtone = gr.File(label="M4R")
101
 
102
  process_button.click(process_youtube_or_audio, inputs=[youtube_url, audio_record], outputs=[mp3_download, iphone_ringtone])
103
 
 
75
  gr.HTML("""
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</p>
79
  """)
80
 
81
  with gr.Row():
 
92
 
93
  with gr.Row():
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