HoneyTian commited on
Commit
6f78f1b
·
1 Parent(s): 2cc4b35
Files changed (1) hide show
  1. main.py +24 -5
main.py CHANGED
@@ -3,6 +3,8 @@
3
  import argparse
4
  from pathlib import Path
5
  import platform
 
 
6
 
7
  import gradio as gr
8
  from huggingface_hub import snapshot_download
@@ -65,7 +67,7 @@ def when_click_denoise_button(noisy_audio_t, engine: str):
65
  raise gr.Error(f"enhancement failed, error type: {type(e)}, error text: {str(e)}.")
66
 
67
  enhanced_audio_t = (sample_rate, enhanced_audio)
68
- return enhanced_audio_t, None
69
 
70
 
71
  def main():
@@ -86,15 +88,33 @@ def main():
86
  # engines
87
  global denoise_engines
88
  denoise_engines = {
89
- "mpnet": InferenceMPNet(
90
  pretrained_model_path_or_zip_file=(project_path / "trained_models/mpnet_aishell_20250221.zip").as_posix(),
91
  ),
92
-
93
  }
94
 
95
  # choices
96
  denoise_engine_choices = list(denoise_engines.keys())
97
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
98
  # ui
99
  with gr.Blocks() as blocks:
100
  gr.Markdown(value="nx denoise.")
@@ -107,12 +127,11 @@ def main():
107
  dn_button = gr.Button(variant="primary")
108
  with gr.Column(variant="panel", scale=5):
109
  dn_enhanced_audio = gr.Audio(label="enhanced_audio")
110
- dn_clean_audio = gr.Audio(label="clean_audio")
111
 
112
  dn_button.click(
113
  when_click_denoise_button,
114
  inputs=[dn_noisy_audio, dn_engine],
115
- outputs=[dn_enhanced_audio, dn_clean_audio]
116
  )
117
 
118
  # http://127.0.0.1:7864/
 
3
  import argparse
4
  from pathlib import Path
5
  import platform
6
+ import shutil
7
+ import zipfile
8
 
9
  import gradio as gr
10
  from huggingface_hub import snapshot_download
 
67
  raise gr.Error(f"enhancement failed, error type: {type(e)}, error text: {str(e)}.")
68
 
69
  enhanced_audio_t = (sample_rate, enhanced_audio)
70
+ return enhanced_audio_t
71
 
72
 
73
  def main():
 
88
  # engines
89
  global denoise_engines
90
  denoise_engines = {
91
+ "mpnet_aishell_20250221": InferenceMPNet(
92
  pretrained_model_path_or_zip_file=(project_path / "trained_models/mpnet_aishell_20250221.zip").as_posix(),
93
  ),
 
94
  }
95
 
96
  # choices
97
  denoise_engine_choices = list(denoise_engines.keys())
98
 
99
+ # examples
100
+ example_zip_file = trained_model_dir / "examples.zip"
101
+ with zipfile.ZipFile(example_zip_file.as_posix(), "r") as f_zip:
102
+ out_root = examples_dir
103
+ if out_root.exists():
104
+ shutil.rmtree(out_root.as_posix())
105
+ out_root.mkdir(parents=True, exist_ok=True)
106
+ f_zip.extractall(path=out_root)
107
+
108
+ # examples
109
+ examples = list()
110
+ for filename in examples_dir.glob("**/*/*.wav"):
111
+ label = filename.parts[-2]
112
+
113
+ examples.append([
114
+ filename.as_posix(),
115
+ denoise_engine_choices[0]
116
+ ])
117
+
118
  # ui
119
  with gr.Blocks() as blocks:
120
  gr.Markdown(value="nx denoise.")
 
127
  dn_button = gr.Button(variant="primary")
128
  with gr.Column(variant="panel", scale=5):
129
  dn_enhanced_audio = gr.Audio(label="enhanced_audio")
 
130
 
131
  dn_button.click(
132
  when_click_denoise_button,
133
  inputs=[dn_noisy_audio, dn_engine],
134
+ outputs=[dn_enhanced_audio]
135
  )
136
 
137
  # http://127.0.0.1:7864/