Kryptone commited on
Commit
77de463
·
verified ·
1 Parent(s): 921272b

little change for now

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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 wav files"):
335
- gr.Markdown("There might be instances where sometimes a few wav or mp3 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"], 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,