Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -14,11 +14,8 @@ pipe = SpeechToSpeechPipeline("facebook/xm_transformer_unity_hk-en")
|
|
14 |
|
15 |
def call_model(audio, model):
|
16 |
# pipe = SpeechToSpeechPipeline("facebook/xm_transformer_unity_hk-en")
|
17 |
-
|
18 |
-
|
19 |
-
print(out_put[1])
|
20 |
-
print(out_put[2])
|
21 |
-
return gr.Audio(out_put[1], out_put[0])
|
22 |
|
23 |
def inference(audio, model):
|
24 |
if model == "xm_transformer_s2ut_en-hk":
|
|
|
14 |
|
15 |
def call_model(audio, model):
|
16 |
# pipe = SpeechToSpeechPipeline("facebook/xm_transformer_unity_hk-en")
|
17 |
+
wav, sr, text = pipe(audio)
|
18 |
+
return gr.Audio(sr, wav)
|
|
|
|
|
|
|
19 |
|
20 |
def inference(audio, model):
|
21 |
if model == "xm_transformer_s2ut_en-hk":
|