4

I need something that can be installed by ubuntu. I don't know how to make my own source code program and that seems to be everything i can find online. I don't need something that uses a browser either. Please include a "sudo apt-get install" command in any answer, as anything else is far too complicated, especially since typing is a problem. I'm fine with installing the ppa for it if needed, as long as a command for that is given as well. I really need a cut and paste way to install something via terminal.

muru
  • 207,228
Liberated
  • 324
  • 5
  • 14

2 Answers2

3

You may try OpenAI's Whisper: https://github.com/openai/whisper

This is an AI model for speech recognition that uses Python. Of course, you need Python and pip installed in your system, and simply install Whisper with:

pip install -U openai-whisper

It is very easy to use and quite powerful. The github page provides the basic steps for using it.

Note that if you are in an Ubuntu version higher than 22, you will not be able to install PyPI modules system-wide using pip. You must create a Python virtual environment and install all the Python modules within that environment, as well as running Whisper within the environment.

0

I just wrote a GNOME extension wrapper around openai-whisper that does exactly this: https://github.com/kavehtehrani/gnome-speech2text

k-war
  • 111