Turn audio ramble into structured Markdown, offline
AudioNotes exists so you don’t have to re-watch a two-hour meeting to find one action item.

What it does
AudioNotes ingests audio or video files, transcribes the speech with FunASR, and passes the text to a local Qwen2 model via Ollama. The LLM formats the raw transcript into structured Markdown—headings, bullets, and all—so you get a readable summary instead of a wall of text. It also exposes a chat interface that lets you ask questions against the processed content.
The interesting bit
It is largely glue code—FunASR plus Ollama wrapped in a Chainlit UI—but the value is in the wiring: it keeps the entire pipeline on-premise and hands you a formatted document rather than a raw subtitle file.
Key highlights
- Fully local pipeline: FunASR for speech recognition, Qwen2 (via Ollama) for summarization and structuring.
- Output is structured Markdown, not just a transcript dump.
- Includes a conversational interface to query the extracted content after processing.
- Packaged as a Docker Compose app with a web UI; local deployment requires PostgreSQL.
- Built in Python using Chainlit for the frontend.
Caveats
- The README is thin on architecture details—how chunking, context limits, or long-file handling work is unclear.
- Ships with hard-coded
admin/admincredentials, so treat it as a local-trust tool rather than a multi-user service.
Verdict
Worth a look if you need a private, self-hosted way to turn recordings into meeting notes or lecture summaries. Skip it if you are after a managed SaaS with mobile sync and enterprise SSO; this is a bring-your-own-hardware Python stack.
Frequently asked
- What is harry0703/AudioNotes?
- AudioNotes exists so you don’t have to re-watch a two-hour meeting to find one action item.
- Is AudioNotes open source?
- Yes — harry0703/AudioNotes is open source, released under the MIT license.
- What language is AudioNotes written in?
- harry0703/AudioNotes is primarily written in Python.
- How popular is AudioNotes?
- harry0703/AudioNotes has 2.2k stars on GitHub.
- Where can I find AudioNotes?
- harry0703/AudioNotes is on GitHub at https://github.com/harry0703/AudioNotes.