Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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> PYTR</h1>
|
78 |
-
<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> Android
|
96 |
-
mp3_download = gr.File(label="
|
97 |
|
98 |
with gr.Column(scale=1, min_width=250):
|
99 |
-
gr.HTML('<label>
|
100 |
-
iphone_ringtone = gr.File(label="
|
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> 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> 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 |
|