Quickly extracts content from audio and video files, and uses large language models to organize it into structured markdown notes for easy reading.
FunASR: https://github.com/modelscope/FunASR
Qwen2: https://ollama.com/library/qwen2
Download and install the Ollama package for your system
Using Alibaba's Qwen2 7b as an example: https://ollama.com/library/qwen2
ollama pull qwen2:7bThere are two deployment methods: Docker deployment or local deployment
curl -fsSL https://github.com/harry0703/AudioNotes/raw/main/docker-compose.yml -o docker-compose.yml
docker-compose upAfter Docker starts, visit http://localhost:15433/
Login account is admin, password is admin (can be modified in the docker-compose.yml file)
Requires an accessible PostgreSQL database
conda create -n AudioNotes python=3.10 -y
conda activate AudioNotes
git clone https://github.com/harry0703/AudioNotes.git
cd AudioNotes
pip install -r requirements.txtRename .env.example to .env and modify the relevant configuration information
chainlit run main.pyAfter the service starts, visit http://localhost:8000/
Login account is admin, password is admin (can be modified in the .env file)

