Spaces:
Runtime error
Runtime error
Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from huggingsound import SpeechRecognitionModel
|
2 |
+
|
3 |
+
model = SpeechRecognitionModel("jonatasgrosman/wav2vec2-large-xlsr-53-chinese-zh-cn")
|
4 |
+
audio_paths = ["/path/to/file.mp3", "/path/to/another_file.wav"]
|
5 |
+
|
6 |
+
transcriptions = model.transcribe(audio_paths)
|