We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ed6379 commit 464c135Copy full SHA for 464c135
1 file changed
core.py
@@ -182,7 +182,7 @@ def run_infer_script(
182
".wav", f".{export_format.lower()}"
183
)
184
except Exception:
185
- print(traceback.format_exc())
+ traceback.print_exc()
186
return (
187
"An error occurred during audio conversion. Check the console for details.",
188
None,
@@ -319,7 +319,7 @@ def run_batch_infer_script(
319
infer_pipeline.convert_audio_batch(**kwargs)
320
return f"Files from {input_folder} inferred successfully."
321
322
323
return "An error occurred during audio batch conversion. Check the console for details."
324
325
0 commit comments