Update lib/infer.py
Browse files- lib/infer.py +1 -1
lib/infer.py
CHANGED
@@ -145,7 +145,7 @@ def infer_audio(
|
|
145 |
print("Combining silence and inferred audios.")
|
146 |
output_count = 1
|
147 |
while True:
|
148 |
-
output_path = os.path.join(os.getcwd(), "output", f"{os.path.splitext(os.path.basename(audio_path))[0]}
|
149 |
if not os.path.exists(output_path):
|
150 |
break
|
151 |
output_count += 1
|
|
|
145 |
print("Combining silence and inferred audios.")
|
146 |
output_count = 1
|
147 |
while True:
|
148 |
+
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}")
|
149 |
if not os.path.exists(output_path):
|
150 |
break
|
151 |
output_count += 1
|