Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -72,7 +72,13 @@ with gr.Blocks() as interface:
|
|
72 |
youtube_url = gr.Textbox(placeholder="Enter the URL here...", label="YouTube URL")
|
73 |
uploaded_audio = gr.File(label="Upload Audio File", type="filepath")
|
74 |
|
75 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
gr.HTML("<h3>Trim Audio</h3>")
|
77 |
with gr.Row():
|
78 |
start_time = gr.Slider(0, 20, value=0, label="Start Time (seconds)")
|
@@ -89,4 +95,3 @@ with gr.Blocks() as interface:
|
|
89 |
interface.launch(share=True)
|
90 |
|
91 |
|
92 |
-
|
|
|
72 |
youtube_url = gr.Textbox(placeholder="Enter the URL here...", label="YouTube URL")
|
73 |
uploaded_audio = gr.File(label="Upload Audio File", type="filepath")
|
74 |
|
75 |
+
gr.HTML("<h3>Instructions</h3>")
|
76 |
+
instructions = gr.Textbox(
|
77 |
+
value="1. Android: move the download to the ringtones folder.\n2. Apple: import download with 'Garage Band' and export to ringtones'.",
|
78 |
+
label="Instructions",
|
79 |
+
interactive=False
|
80 |
+
)
|
81 |
+
|
82 |
gr.HTML("<h3>Trim Audio</h3>")
|
83 |
with gr.Row():
|
84 |
start_time = gr.Slider(0, 20, value=0, label="Start Time (seconds)")
|
|
|
95 |
interface.launch(share=True)
|
96 |
|
97 |
|
|