Spaces:
Runtime error
Runtime error
update print file path
Browse files
app.py
CHANGED
@@ -263,6 +263,7 @@ def gradio_interface(image_file,input_audio_file):
|
|
263 |
breath_enhanced_speech = speech + breath_output
|
264 |
print("Writing output file")
|
265 |
output_audio_file = "Breath_v1.wav"
|
|
|
266 |
sf.write(output_audio_file, breath_enhanced_speech, samplerate= SAMPLING_RATE,format='WAV')
|
267 |
output_image_file = plot_waveform(speech,SAMPLING_RATE,speech_b_detect)
|
268 |
return output_image_file,output_audio_file
|
|
|
263 |
breath_enhanced_speech = speech + breath_output
|
264 |
print("Writing output file")
|
265 |
output_audio_file = "Breath_v1.wav"
|
266 |
+
print(f"Output file path : {output_audio_file}")
|
267 |
sf.write(output_audio_file, breath_enhanced_speech, samplerate= SAMPLING_RATE,format='WAV')
|
268 |
output_image_file = plot_waveform(speech,SAMPLING_RATE,speech_b_detect)
|
269 |
return output_image_file,output_audio_file
|