2024-04-16 17:07:19 +00:00
|
|
|
# Wazowski
|
|
|
|
|
|
|
|
Meeting transcription and summarization, all running in local models without sending any data to the cloud.
|
|
|
|
|
|
|
|
# Requirements
|
|
|
|
|
|
|
|
- Python 3.10 with virtualenv
|
|
|
|
- ffmpeg
|
|
|
|
|
|
|
|
# Installation
|
|
|
|
|
|
|
|
```bash
|
2024-04-16 17:27:06 +00:00
|
|
|
virtualenv Wazowski --python=python3.9.9
|
2024-04-16 17:07:19 +00:00
|
|
|
source Wazowski/bin/activate
|
|
|
|
pip install -r requirements.txt
|
|
|
|
```
|
|
|
|
|
|
|
|
# Usage
|
|
|
|
|
|
|
|
```bash
|
2024-04-16 17:54:45 +00:00
|
|
|
python3 wazowski.py -i {meeting_video_recording} -o {meeting_summary_output}
|
|
|
|
```
|
|
|
|
|
|
|
|
# Build
|
|
|
|
|
|
|
|
```bash
|
2024-04-16 20:12:35 +00:00
|
|
|
python3 -m pyinstaller --onefile -n Wazowski wazowski.py
|
2024-04-16 17:07:19 +00:00
|
|
|
```
|