Skip to content

Commit

Permalink
Merge pull request #800 from AznamirWoW/batch_output_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
blaisewf authored Oct 10, 2024
2 parents 39947e7 + 24a2654 commit b1f2bf8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rvc/infer/infer.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,9 +406,9 @@ def convert_audio_batch(
audio_output_path=new_output,
**kwargs,
)
print(f"Conversion completed at '{audio_input_paths}'.")
elapsed_time = time.time() - start_time
print(f"Batch conversion completed in {elapsed_time:.2f} seconds.")
print(f"Conversion completed at '{audio_input_paths}'.")
elapsed_time = time.time() - start_time
print(f"Batch conversion completed in {elapsed_time:.2f} seconds.")
except Exception as error:
print(f"An error occurred during audio batch conversion: {error}")
print(traceback.format_exc())
Expand Down

0 comments on commit b1f2bf8

Please sign in to comment.