supermy commited on
Commit
1728aa5
1 Parent(s): 4b7ac59

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -33,7 +33,7 @@ def transcribe(microphone, file_upload):
33
 
34
  file = microphone if microphone is not None else file_upload
35
 
36
- text = pipe(file,language='Chinese')["text"]
37
 
38
  return warn_output + text
39
 
 
33
 
34
  file = microphone if microphone is not None else file_upload
35
 
36
+ text = pipe(file,language='zh')["text"]
37
 
38
  return warn_output + text
39