little change for now
Browse files
app.py
CHANGED
@@ -331,12 +331,12 @@ with gr.Blocks(theme='sudeepshouche/minimalist', title="Global Dataset Maker") a
|
|
331 |
[yt_video, audio_output_format],
|
332 |
[gr.Text(label="Output"), gr.File(label="Zipped audio file")]
|
333 |
)
|
334 |
-
with gr.Tab("Check for leftover mp3 or
|
335 |
-
gr.Markdown("There might be instances where sometimes a few wav or
|
336 |
with gr.Row():
|
337 |
with gr.Column():
|
338 |
with gr.Row():
|
339 |
-
which_filetype = gr.Radio(["wav", "mp3"], value="wav", label="Search for what filetype?")
|
340 |
checkbtn = gr.Button("Check for files", variant='primary')
|
341 |
checkbtn.click(
|
342 |
check_for_remaining_wav_or_mp3_files,
|
|
|
331 |
[yt_video, audio_output_format],
|
332 |
[gr.Text(label="Output"), gr.File(label="Zipped audio file")]
|
333 |
)
|
334 |
+
with gr.Tab("Check for leftover mp3, wav, or zip files"):
|
335 |
+
gr.Markdown("There might be instances where sometimes a few wav, mp3, or zip files are left over after a conversion. This section tells how many of those files are left, if any.")
|
336 |
with gr.Row():
|
337 |
with gr.Column():
|
338 |
with gr.Row():
|
339 |
+
which_filetype = gr.Radio(["wav", "mp3", "zip"], value="wav", label="Search for what filetype?")
|
340 |
checkbtn = gr.Button("Check for files", variant='primary')
|
341 |
checkbtn.click(
|
342 |
check_for_remaining_wav_or_mp3_files,
|