Skip to main content

Personal CLI note-taker for turning meeting audio into cleaned meeting manuscripts.

Project description

Fly on the Wall

PyPI Python Versions License: MIT

Fly on the Wall is a personal CLI note-taker for meeting audio.

It takes local audio recordings, transcribes them, identifies recurring speakers where possible, cleans the transcript, analyzes the meeting, exports durable Markdown artifacts, and can publish readable notes into an Obsidian vault.

The tool is designed for one person running it locally. There is no hosted service, login system, team workspace, or multi-tenant data model.

Project Status

This is early alpha software. It is usable as a local personal CLI, but command behavior, storage schema, and output formats may still change between releases.

Until 1.0, minor releases may include breaking changes. Back up ~/.local/share/fly-on-the-wall/ before upgrading if you depend on stored meeting data.

Issues and suggestions are welcome via GitHub Issues, but the project is provided as-is with no support guarantee.

Audio is sent to configured transcription/AI providers during processing. Optional speaker identity embeddings run locally when installed with the identity extra. External providers may charge usage-based fees depending on your provider account, pricing plan, and processing volume.

Development Transparency

This project was developed as an agentic coding project using OpenCode with OpenAI GPT-5.5. Code quality checks were supported by CodeScene's CodeHealth analysis.

What It Does

fow process <audio> runs the main pipeline:

  1. Imports the audio into local app storage.
  2. Extracts audio metadata and recording timestamps where possible.
  3. Sends the raw audio to ElevenLabs for transcription and diarization.
  4. Stores the raw provider response for auditability.
  5. Normalizes provider output into internal segments and meeting-local speakers.
  6. Matches meeting-local speakers to known people using local voice embeddings.
  7. Renders a named transcript.
  8. Runs deterministic cleanup.
  9. Optionally runs OpenAI light cleanup, meeting analysis, and title generation.
  10. Exports immutable Markdown artifacts.
  11. Publishes to configured Obsidian targets if auto-publish is enabled.

Final user-facing exports include:

  • transcript.md: cleaned readable manuscript.
  • analysis.md: summary, decisions, action items, open questions, and important details.
  • manifest.json: internal metadata about the export.

Current Provider Setup

The current transcription provider is ElevenLabs Scribe v2.

OpenAI is used for optional transcript cleanup, meeting analysis, and generated meeting titles when an OpenAI API key is available.

Speaker identity matching uses local embeddings via pyannote.audio / pyannote/wespeaker-voxceleb-resnet34-LM. Audio used for identity matching is processed locally. The first model load may contact Hugging Face to download model weights unless they are already cached locally.

Installation

Install the CLI with uv tool:

uv tool install fow-cli
fow setup

Speaker identity matching is optional and adds heavier local ML dependencies:

uv tool install "fow-cli[identity]"

If you already installed the base CLI with uv tool, upgrade it with the optional extra:

uv tool upgrade --reinstall "fow-cli[identity]"

Development from a source checkout also uses uv:

uv sync
uv run fow

Include speaker identity dependencies during local development with:

uv sync --extra identity

You can point fow at uv run fow with a shell alias:

alias fow="uv run fow"

Configuration And Secrets

Configuration lives under:

~/.config/fly-on-the-wall/

Application data lives under:

~/.local/share/fly-on-the-wall/

API keys are read from environment variables first, then from the OS keyring.

Useful secret commands:

fow secrets status
fow secrets set elevenlabs
fow secrets set openai
fow secrets remove openai

Expected environment variables:

ELEVENLABS_API_KEY
OPENAI_API_KEY

Basic Usage

Run the interactive setup wizard:

fow setup

It checks required dependencies, helps store API keys, sets your user identity, and can configure Obsidian publishing and watched folders.

Process one recording:

fow process path/to/meeting.m4a

Optionally provide a manual title and context:

fow process path/to/meeting.m4a --title "Board prep" --description "Monthly board preparation call"

List meetings:

fow meetings list

Show one meeting:

fow meetings show <meeting>

Show pipeline status:

fow meetings status <meeting>

Refresh derived outputs for one meeting without retranscribing:

fow refresh meeting <meeting>

Refresh every meeting with stale derived outputs:

fow refresh stale-meetings

People And Speakers

The CLI uses two related concepts:

  • A person is a stable real-world identity, such as Person A or Person B.
  • A meeting speaker is a local diarization label inside one provider run, such as speaker_0.

Manage known people:

fow people list
fow people create "Person A"
fow people show "Person A"

Review unknown meeting speakers interactively:

fow meetings speakers review
fow meetings speakers review --include-uncertain
fow meetings speakers review --only-uncertain

Review speakers for one meeting:

fow meetings speakers review --meeting <meeting>

List meeting speakers that are not assigned to known people:

fow meetings speakers unknown
fow meetings speakers unknown --meeting <meeting>

Assign a meeting speaker to a known person, creating the person if needed:

fow meetings speakers assign <local-speaker-id> "Person A"

Ignore a meeting speaker so it does not appear in future reviews:

fow meetings speakers ignore <local-speaker-id>

Refresh speaker matching after adding voice samples or changing identities:

fow refresh speakers
fow refresh speakers <meeting>
fow refresh speakers --include-known-speakers

Backfill missing known-person voice embeddings:

fow people embeddings status
fow people embeddings backfill

Watched Folders

Fly on the Wall can watch local folders, mounted Dropbox/rclone folders, and removable recorder folders.

Add a folder:

fow watch folders add /path/to/recordings --name recordings

List watched folders:

fow watch folders list

Run one scan:

fow watch scan

Watch continuously:

fow watch run

The watcher tolerates missing/remounted folders and uses periodic scans because cloud/removable mounts may not emit reliable filesystem events.

Publishing To Obsidian

Publishing is separate from internal exports.

Internal exports are immutable. Obsidian notes are mutable and idempotent, so republishing updates the existing note rather than creating duplicate notes.

Add an Obsidian target:

fow publish targets add obsidian "/path/to/Obsidian Vault/Fly on the Wall" --name obsidian --auto-publish

Publish one meeting:

fow publish meeting <meeting> --target obsidian

Publish all exported meetings:

fow publish all --target obsidian

Example Personal Setup

One practical setup is to combine several recording sources with watched folders and Obsidian publishing:

  • A Philips DVT 4110 voice recorder is automounted when connected, exposing recordings as a local folder.
  • A dedicated Dropbox recording folder is synced locally with rclone.
  • On iPhone, RecUp can upload recordings directly to Dropbox. Assigning RecUp to the iPhone Action Button makes quick capture a one-button workflow.
  • fow watch run watches both the recorder mount and the local Dropbox/rclone folder.
  • Processed notes are published into an Obsidian vault. If the vault is already synced with Remotely Save, notes can then appear on other devices through Obsidian sync tooling.

In that setup, recordings can enter from either the hardware recorder or phone uploads, fow processes them locally, and Obsidian becomes the final reading and review surface.

Cost Tracking

The app records estimated external service usage and costs for future live provider calls.

It tracks:

  • ElevenLabs transcription usage via audio_duration_secs.
  • OpenAI cleanup, analysis, and title-generation usage via provider token usage.
  • Pricing snapshots used for each estimate.

Show total estimated costs:

fow costs summary

Show estimated costs for one meeting:

fow costs meeting <meeting>

Historical ElevenLabs usage can be backfilled accurately from stored raw responses. Historical OpenAI usage can only be approximated unless raw OpenAI response usage was stored.

Local Storage

The app stores operational state in SQLite and large artifacts on disk:

~/.local/share/fly-on-the-wall/
  fly.db
  audio/
  artifacts/
  voice-samples/
  exports/

Raw provider responses are intentionally preserved. They are useful for debugging, normalization changes, speaker review, cost tracking, and future reprocessing.

Uninstalling

Remove the installed CLI:

uv tool uninstall fow-cli

Remove local configuration and app data if you no longer need stored meetings, exports, raw provider responses, voice samples, or settings:

rm -rf ~/.config/fly-on-the-wall ~/.local/share/fly-on-the-wall

This does not remove original recordings that were processed from outside the app storage directory.

Development

Install development dependencies:

uv sync --dev

Install pre-commit hooks:

uv run pre-commit install

Run all pre-commit hooks manually:

uv run pre-commit run --all-files

Run tests:

uv run pytest

Run lint and formatting checks:

uv run ruff check .
uv run ruff format --check .
uv run basedpyright

basedpyright is configured as a pragmatic source-code guardrail. It checks explicit type claims in src/ without requiring every dynamic SQLite, JSON, or third-party boundary to be fully typed.

Build distribution artifacts:

uv build

Test a built wheel locally:

uv tool install dist/fow_cli-0.1.0-py3-none-any.whl
fow setup

Publish to PyPI after verifying the build, package name, and license metadata:

uv publish

Support

If Fly on the Wall is useful to you, and you have the spare cash, buying me a coffee would be lovely. Absolutely no pressure.

Buy Me A Coffee

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fow_cli-0.2.0.tar.gz (56.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fow_cli-0.2.0-py3-none-any.whl (76.8 kB view details)

Uploaded Python 3

File details

Details for the file fow_cli-0.2.0.tar.gz.

File metadata

  • Download URL: fow_cli-0.2.0.tar.gz
  • Upload date:
  • Size: 56.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"KDE neon","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for fow_cli-0.2.0.tar.gz
Algorithm Hash digest
SHA256 a70cc50367fa24f52bf5e67038137547bf6232e72f26fe6fe06d7f56e59442b8
MD5 49713d7cb0684f7f8160032d70655335
BLAKE2b-256 dae55d9e5b671d4b3f55b099ad8a4e1281b43b3dbc9767f242a7b609ccf5039e

See more details on using hashes here.

File details

Details for the file fow_cli-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: fow_cli-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 76.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.16 {"installer":{"name":"uv","version":"0.11.16","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"KDE neon","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for fow_cli-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 60184c6d70c1dd56159e2e5d36d9f07b5df0beffe2cdc18ebeb72c4e93acc2c4
MD5 1b7ffe0eaf5467f24f0fc3906b49475a
BLAKE2b-256 7a8c19889695023f02cad60a4f36bff032b74f3be8012f66248c47b32e0d0a36

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page