Upload Audio_Effects_SDK/samples/effects_demo/example_config.txt with huggingface_hub
Browse files
Audio_Effects_SDK/samples/effects_demo/example_config.txt
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Sample configuration file
|
2 |
+
# Configuration files can also be generated by run_effect.sh (specify the -c flag)
|
3 |
+
#
|
4 |
+
#
|
5 |
+
# Effect to apply (denoiser/dereverb/superres/aec/dereverb_denoiser)
|
6 |
+
# Refer to SDK documentation for supported effects
|
7 |
+
effect denoiser
|
8 |
+
# Input sample rate
|
9 |
+
sample_rate 16000
|
10 |
+
# Model corresponding to GPU
|
11 |
+
# Refer to run_effects.sh for mapping
|
12 |
+
model ../../models/sm_75/denoiser_16k.trtpkg
|
13 |
+
# Whether to run effect in real-time
|
14 |
+
real_time 0
|
15 |
+
# Intensity ratio of effect
|
16 |
+
intensity_ratio 1.0
|
17 |
+
# Input files (separate multiple files with spaces)
|
18 |
+
input_wav_list ../input_files/denoiser/16k/Fan_16k.wav
|
19 |
+
# Output files (separate multiple files with spaces)
|
20 |
+
output_wav_list out_16k.wav
|