Omnibus commited on
Commit
20d75a9
1 Parent(s): 7cb7a32

Update vc.py

Browse files
Files changed (1) hide show
  1. vc.py +1 -1
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(output, file_path=f"{uid}-output.wav")
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