Zoommarizer is a python application that allows to summarize Zoom meetings (or anything else). It is built using OpenAI technology such as GPT-3.5 and Whisper.
- Clone the repository
- (Optional) Create a virtual environment using
python -m venv venv
(If that doesn't work, trypython3 -m venv venv
or install virtualenv usingpip install virtualenv
) - Install the requirements using
pip install -r requirements.txt
- Create a
.env
file in the root directory and add the following variables:
OPENAI_API_KEY=<your openai api key>
// Example: OPENAI_API_KEY=sk-1234567890
- Run the application using
py main.py --video VIDEO-NAME
(If that doesn't work, trypython3 main.py --video VIDEO-NAME
) - The summary will be saved in the
transcript.txt
folder
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
MIT Feel free to use this code for whatever you want.
- Enrique Madrid