@Moullablad

Convert any mp3 file to text offline AI

With this python script you can convert any mp3 file to text, using Open AI whisper.

You should use Python.
Code :
import whisper

model = whisper.load_model("turbo")
result = model.transcribe("akon.mp3")
print(result["text"])
Convert any mp3 file to text offline AI