tuna2134 commited on
Commit
994001b
1 Parent(s): 2397c99

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -9,7 +9,7 @@ model.load_sbv2file_from_path("amitaro", "models/amitaro.sbv2")
9
 
10
 
11
  def generate(text):
12
- wav_data = model.synthesize(text, "amitaro", 0, 0.0, 0.5)
13
  byte_io = io.BytesIO(wav_data)
14
  sr, data = wavfile.read(byte_io)
15
  return sr, data
 
9
 
10
 
11
  def generate(text):
12
+ wav_data = model.synthesize(text, "amitaro", 0, 0, 0.0, 0.5)
13
  byte_io = io.BytesIO(wav_data)
14
  sr, data = wavfile.read(byte_io)
15
  return sr, data