Skip to content

Commit

Permalink
Fix always split audio
Browse files Browse the repository at this point in the history
  • Loading branch information
aitronz committed Jan 31, 2024
1 parent feed566 commit 37d091a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rvc/infer/infer.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def vc_single(
)
if tgt_sr != resample_sr >= 16000:
tgt_sr = resample_sr
if split_audio:
if split_audio == "True":
result, new_dir_path = process_audio(input_audio_path)
if result == "Error":
return "Error with Split Audio", None
Expand Down

0 comments on commit 37d091a

Please sign in to comment.