A minimalistic automatic speech recognition streamlit based webapp powered by OpenAI's Whisper "State of the Art" models
Last updated Apr 20, 2026
66
Stars
12
Forks
0
Issues
0
Stars/day
Attention Score
1
Language breakdown
No language data available.
โธ Files
click to expand
README
๐ฃ Automatic Speech Recognition using OpenAI's Whisper โจ

A minimalistic automatic speech recognition streamlit based webapp powered by OpenAI's Whisper "State of the Art" models

Installation:
- Simply run the command pip install -r requirements.txt to install the necessary dependencies.
Usage:
- Head over to this link and follow the steps to get a comprehensive overview of the architecture of OpenAI's whisper models.
- Simply run the command:
streamlit run app.py
- Navigate to http://localhost:8501 in your web-browser.
- By default, streamlit allows us to upload files of max. 200MB. If you want to have more size for uploading audio files, execute the command :
streamlit run app.py --server.maxUploadSize=1028
Running the Dockerized App
- Ensure you have Docker Installed and Setup in your OS (Windows/Mac/Linux). For detailed Instructions, please refer this.
- Navigate to the folder where you have cloned this repository ( where the Dockerfile is present ).
- Build the Docker Image (don't forget the dot!! :smile: ):
docker build -f Dockerfile -t app:latest .
- Run the docker:
docker run -p 8501:8501 app:latest
This will launch the dockerized app. Navigate to http://localhost:8501/ in your browser to have a look at your application. You can check the status of your all available running dockers by:
docker ps๐ More in this category