snoofus
snoofus copied to clipboard
Snoofus, the Speech Analyzer
Snoofus
Snoofus is a Speech Analyzer that allows users to record their speech and receive feedback on the quality of their speech in terms of clarity, confidence and fluency. Snoofus also provides the count of filler words (disfluencies) such as uh, ummm, ah, etc., you use in your speech. Under the hood, Snoofus uses OpenAI's "tiny.en" Whisper model for converting speech to text. The text is then processed by GPT-4 to provide the analysis of the speech.
Snoofus will give you great feedback on your speech but there are several aspects of speech not captured by this furry overlord. Eye contact, long pauses, body language and other visual cues that communicate a lot about your speech are not considered in the analysis provided.
Features
- Live Audio Recording: Users can record their speech directly through the browser.
- Speech Analysis: After recording, users can analyze their speech to receive feedback on clarity and confidence.
- File Management: Users can save, rename, and delete their recordings. They can also listen to previous recordings.
- Interactive UI: The web application provides a user-friendly interface, complete with modals for user actions and confirmation prompts.
Demo
- Good Speech: Barack Obama
https://github.com/amityalwar/snoofus/assets/24665860/f3427368-60c2-4b4d-80fc-41fe4177fac1
- Bad Speech: Richard Hendricks
https://github.com/amityalwar/snoofus/assets/24665860/d9591b03-37d9-473a-9311-52108c9dd1a5
UI Screenshots
First Screen
Analysis of a live speech recording of "What is the meaning of Life?"
Usage
- Recording Speech: Click on the "Start Recording" button to start recording your speech. Once done, click on "Stop Recording". After stopping, you'll be prompted to name your recording.
- Analysis: From the dropdown, select a recording and click "Analyze" to get feedback on your speech.
- Playback & Management: Use the dropdown to select previous recordings for playback. You can also delete individual recordings or all recordings at once.
Setup & Installation
-
Clone the Repository
git clone https://github.com/amityalwar/snoofus.git cd snoofus
-
Set Up OpenAI API Key
Create a file named
config.py
in the main project directory. Add your OpenAI API key as follows:OPENAI_API_KEY = 'your_openai_key_here'
Make sure to add
config.py
to your.gitignore
to ensure it's not tracked by Git:echo "config.py" >> .gitignore
-
Set Up a Virtual Environment (Recommended)
python -m venv venv source venv/bin/activate # On Windows, use `venv\\Scripts\\activate`
-
Install Required Packages
pip install -r requirements.txt
-
Run the Application
python app.py
The application will start and should be accessible at
http://127.0.0.1:5000/
.
License
This project is licensed under the MIT License. See LICENSE for more details.