Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -83,6 +83,9 @@ def filtered():
|
|
83 |
str: A success message if the audio is filtered correctly, otherwise an error message.
|
84 |
"""
|
85 |
try:
|
|
|
|
|
|
|
86 |
# Read the audio data from the input file
|
87 |
sr, data = read(input_file)
|
88 |
|
|
|
83 |
str: A success message if the audio is filtered correctly, otherwise an error message.
|
84 |
"""
|
85 |
try:
|
86 |
+
input_file = 'input_text.wav'
|
87 |
+
output_file = 'output_filtered_receiver.wav'
|
88 |
+
|
89 |
# Read the audio data from the input file
|
90 |
sr, data = read(input_file)
|
91 |
|