Deepseek/whisper/test.py

5 lines
157 B
Python
Raw Normal View History

2025-04-26 14:03:12 +08:00
import whisper
model = whisper.load_model("large-v3-turbo")
result = model.transcribe("./driven_audio/chinese_poem1.wav",fp16="False")
print(result["text"])