Update lib/infer.py
Browse files- lib/infer.py +1 -1
lib/infer.py
CHANGED
@@ -176,7 +176,7 @@ def infer_audio(
|
|
176 |
print("Combining silence and inferred audios.")
|
177 |
output_count = 1
|
178 |
while True:
|
179 |
-
output_path = os.path.join(os.getcwd(), "output", f"{os.path.splitext(os.path.basename(audio_path))[0]}{model_name}{f0_method.capitalize()}_{output_count}.{audio_format}")
|
180 |
if not os.path.exists(output_path):
|
181 |
break
|
182 |
output_count += 1
|
|
|
176 |
print("Combining silence and inferred audios.")
|
177 |
output_count = 1
|
178 |
while True:
|
179 |
+
output_path = os.path.join(os.getcwd(), "output", f"{os.path.splitext(os.path.basename(audio_path))[0]}_{model_name}_{f0_method.capitalize()}_{output_count}.{audio_format}")
|
180 |
if not os.path.exists(output_path):
|
181 |
break
|
182 |
output_count += 1
|