1. Make sure you're using a model that isn't suffixed with `.en` (`base`, not `base.en). 2. Use `model.transcribe(your_input_audio, language='Japanese', task='translate')` ... with the appropriate input language.
>result = model.transcribe("audio.wav", language="english")
result = model.transcribe("audio.wav", task="translate")
But your post helped me figure out the above, so thank you!