|
|
@@ -0,0 +1,37 @@ |
|
|
|
|
|
|
|
CONVO Application |
|
|
|
|
|
|
|
CONVO is an application that takes audio input, processes it, and generates a video output. It utilizes Flask, Flask-SocketIO, ImageIO, SpeechRecognition, and PyAudio libraries in Python. |
|
|
|
|
|
|
|
Installation |
|
|
|
Prerequisites |
|
|
|
Before you begin, ensure you have Python and pip installed on your machine. |
|
|
|
|
|
|
|
Install Required Libraries |
|
|
|
|
|
|
|
|
|
|
|
pip install Flask |
|
|
|
pip install Flask-SocketIO |
|
|
|
pip install SpeechRecognition |
|
|
|
pip install imageio |
|
|
|
pip install PyAudio |
|
|
|
|
|
|
|
|
|
|
|
Note: If pyauido installation gives error on ubuntu then follow these steps: |
|
|
|
|
|
|
|
1. First write this command in terminal |
|
|
|
sudo apt-get install portaudio19-dev |
|
|
|
|
|
|
|
2. then |
|
|
|
pip install PyAudio |
|
|
|
|
|
|
|
This will install the necessary dependencies for the CONVO application. |
|
|
|
|
|
|
|
Getting Started |
|
|
|
Follow these steps to get the CONVO application up and running: |
|
|
|
|
|
|
|
Once cloned the repo, just navigate to repo and give command: |
|
|
|
|
|
|
|
python3 app.py |
|
|
|
|
|
|
|
|