Spaces:
Runtime error
Runtime error
Update vc.py
Browse files
vc.py
CHANGED
@@ -47,7 +47,7 @@ tts = TTS(model_name=f"tts_models/en/ljspeech/fast_pitch", progress_bar=False).t
|
|
47 |
|
48 |
def bark_ez(text, n='1', land='en'):
|
49 |
uid=uuid.uuid4()
|
50 |
-
tts.tts_to_file(
|
51 |
return (f'{uid}-output.wav')
|
52 |
|
53 |
|
|
|
47 |
|
48 |
def bark_ez(text, n='1', land='en'):
|
49 |
uid=uuid.uuid4()
|
50 |
+
tts.tts_to_file(text, file_path=f"{uid}-output.wav")
|
51 |
return (f'{uid}-output.wav')
|
52 |
|
53 |
|