Run this helper free — no credit card
Every helper is free for 30 days. Answer 3 questions and get the full result in 2 minutes.
Start free →Voice Memo Organizer
Transform messy voice memos into a searchable knowledge archive
❌ Users have hundreds of untitled Apple Voice Memos scattered across their device with no way to search, find, or recall what each recording contains.
✅ All voice memos are transcribed, summarized, and organized into a searchable archive with descriptive titles and key information.
- ✓Batch transcribes hundreds of recordings locally with whisper.cpp
- ✓Automatically generates descriptive titles and summaries
- ✓Extracts themes and key quotes from each memo
- ✓Creates searchable archive without cloud uploads
- ✓No API keys or subscriptions required
👁 3 views · 📦 0 installs
Install in one line
CLI$ mfkvault install cathrynlavery-voice-memo-organizerRequires the MFKVault CLI. Prefer MCP?
Free to install — no account needed
Copy the command below and paste into your agent.
Instant access • No coding needed • No account needed
What you get in 5 minutes
- Full skill code ready to install
- Works with 4 AI agents
- Lifetime updates included
Run this helper
Answer a few questions and let this helper do the work.
▸Advanced: use with your AI agent
Description
--- name: voice-memo-organizer description: Find, transcribe, summarize, and organize all Apple Voice Memos into a searchable archive. Batch processes hundreds of recordings locally using whisper.cpp — no API keys needed. --- # Voice Memo Organizer Turn hundreds of untitled Apple Voice Memos into a searchable, organized archive with descriptive titles, summaries, themes, and key quotes. ## When to Use - User wants to organize their voice memos - User mentions having a lot of recordings they can't find or search - User wants to transcribe voice memos in bulk - User asks about finding Apple Voice Memos files on macOS ## What It Does 1. **Finds** all Apple Voice Memos on macOS (they're hidden in a non-obvious path) 2. **Extracts** metadata from the SQLite database (dates, durations, labels) 3. **Transcribes** every recording locally using whisper.cpp (no API keys needed) 4. **Summarizes** each transcript with a descriptive title, themes, key quotes, and type 5. **Builds** a searchable master index document ## Prerequisites - macOS with Voice Memos app (recordings synced via iCloud from iPhone) - **Full Disk Access** for Terminal: System Settings > Privacy & Security > Full Disk Access > enable your terminal app - [Homebrew](https://brew.sh) — if not installed: `/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"` ## Step-by-Step Process ### Step 1: Access Voice Memos Voice Memos are stored at: ``` ~/Library/Group Containers/group.com.apple.VoiceMemos.shared/Recordings/ ``` This path requires Full Disk Access. Verify access: ```bash ls ~/Library/Group\ Containers/group.com.apple.VoiceMemos.shared/Recordings/ | head -5 ``` If you get "Operation not permitted", the user needs to enable Full Disk Access for Terminal in System Settings > Privacy & Security > Full Disk Access. If the directory doesn't exist or is empty, the user may need to open the Voice Memos app on their Mac first and wait for iCloud to sync their recordings. The folder also contains `CloudRecordings.db` — a SQLite database with metadata: ```bash sqlite3 ~/Library/Group\ Containers/group.com.apple.VoiceMemos.shared/Recordings/CloudRecordings.db \ "SELECT COUNT(*), ROUND(SUM(ZDURATION)/3600,1) as hours FROM ZCLOUDRECORDING WHERE ZPATH IS NOT NULL;" ``` ### Step 2: Copy Recordings & Export Metadata ```bash mkdir -p ~/Documents/Voice-Memos-Organized/{transcripts,summaries,models} mkdir -p ~/Documents/Voice-Memos-Raw # Copy all recordings cp ~/Library/Group\ Containers/group.com.apple.VoiceMemos.shared/Recordings/*.m4a ~/Documents/Voice-Memos-Raw/ 2>/dev/null cp ~/Library/Group\ Containers/group.com.apple.VoiceMemos.shared/Recordings/*.qta ~/Documents/Voice-Memos-Raw/ 2>/dev/null # Export metadata sqlite3 -header -csv ~/Library/Group\ Containers/group.com.apple.VoiceMemos.shared/Recordings/CloudRecordings.db \ "SELECT Z_PK as id, ZCUSTOMLABEL as label, ZPATH as filename, ROUND(ZDURATION,1) as duration_secs, datetime(ZDATE + 978307200, 'unixepoch', 'localtime') as recorded_date FROM ZCLOUDRECORDING WHERE ZPATH IS NOT NULL AND ZPATH != '' ORDER BY ZDATE ASC;" \ > ~/Documents/Voice-Memos-Organized/recordings-metadata.csv ``` ### Step 3: Install Transcription Tools ```bash # Install ffmpeg for audio conversion brew install ffmpeg # Download whisper.cpp base.en model (~150MB, good speed/accuracy for English) curl -L -o ~/Documents/Voice-Memos-Organized/models/ggml-base.en.bin \ "https://huggingface.co/ggerganov/whisper.cpp/resolve/main/ggml-base.en.bin" ``` For the whisper binary: ```bash # Install whisper.cpp via brew (recommended) brew install whisper-cpp # The binary is called whisper-cli (not whisper-cpp): which whisper-cli # /opt/homebrew/bin/whisper-cli (Apple Silicon) or /usr/local/bin/whisper-cli (Intel) ``` ### Step 4: Batch Transcribe For each audio file: 1. Convert to 16kHz mono WAV using ffmpeg 2. Run whisper.cpp with the base.en model 3. Save transcript as .txt ```bash WHISPER="$(command -v whisper-cli)" # auto-detect path MODEL="$HOME/Documents/Voice-Memos-Organized/models/ggml-base.en.bin" for audiofile in ~/Documents/Voice-Memos-Raw/*; do [ -f "$audiofile" ] || continue BASENAME=$(basename "$audiofile" | sed 's/\.[^.]*$//') TEMP_WAV="/tmp/vm_${BASENAME}.wav" # Skip if already transcribed [ -s ~/Documents/Voice-Memos-Organized/transcripts/"${BASENAME}.txt" ] && continue # Convert to WAV (skip on failure to avoid stale data) if ! ffmpeg -y -i "$audiofile" -ar 16000 -ac 1 -c:a pcm_s16le "$TEMP_WAV" 2>/dev/null; then echo "SKIP: Could not convert $BASENAME" continue fi # Transcribe "$WHISPER" -m "$MODEL" -f "$TEMP_WAV" --output-txt \ -of ~/Documents/Voice-Memos-Organized/transcripts/"$BASENAME" -t 8 --no-timestamps 2>/dev/null rm -f "$TEMP_WAV" done ``` **Performance note:** ~1 minute of audio transcribes in ~1 second on Apple Silicon. 67 hours takes roughly 1 hour. ### Step 5: Summarize Each Transcript For each transcript, generate a JSON summary with: - **title**: Short descriptive title (5-10 words) - **summary**: 2-3 sentence summary of the content - **themes**: Array of tags (e.g. "business", "personal", "health", "brainstorm") - **key_quotes**: Array of 1-3 notable verbatim quotes - **type**: One of "conversation", "brainstorm", "voice_note", "meeting", "personal", "phone_call" Save each as a JSON file in the summaries/ folder. Process in batches of 10-20 transcripts at a time using parallel agents for speed. Skip transcripts that are too short (<10 words) or contain only silence/noise. ### Step 6: Build Master Index Create `voice-memos-master-index.md` with: - Stats header (count, date range, total hours) - Theme breakdown - Type breakdown - Chronological entries with: date, title, duration, type, themes, summary, key quotes, filename - "Best Quotes" section at the end ## Output Structure ``` ~/Documents/Voice-Memos-Organized/ ├── voice-memos-master-index.md ← searchable master document ├── transcripts/ ← full text of every recording ├── summaries/ ← JSON summaries with titles/themes/quotes ├── recordings-metadata.csv ← database export └── models/ ← whisper model ~/Documents/Voice-Memos-Raw/ ← original audio files ``` ## Tips - The master index works great in Obsidian, VS Code, or any text editor with Cmd+F search - For non-English memos, use `ggml-base.bin` (multilingual) instead of `ggml-base.en.bin` - For higher accuracy on important recordings, use `ggml-medium.en.bin` (~500MB) - The SQLite database also contains folder info if the user organized memos into folders in the app
Security Status
Unvetted
Not yet security scanned
Related AI Tools
More Make Money tools you might like
paper-fetch
FreeUse when the user wants to download a paper PDF from a DOI, title, or URL via legal open-access sources. Tries Unpaywall, arXiv, bioRxiv/medRxiv, PubMed Central, and Semantic Scholar in order. Never uses Sci-Hub or paywall bypass.
Run freeBeautiful Prose (Claude Skill)
FreeA hard-edged writing style contract for timeless, forceful English prose without modern AI tics. Use when users ask for prose or rewrites that must be clean, exact, concrete, and free of AI cadence, filler, or therapeutic tone.
Run freeSkillCheck (Free)
FreeValidate Claude Code skills against Anthropic guidelines. Use when user says "check skill", "skillcheck", "validate SKILL.md", or asks to find issues in skill definitions. Covers structural and semantic validation. Do NOT use for anti-slop detection,
Run freeDesign Checker Skill
Free"Audit designs against 18 professional rules across Figma files and code (HTML/CSS/React/Vue/Tailwind). Detects framework automatically, runs code superpowers (aria, focus, contrast, tokens, responsive, motion, forms, navigation, spacing), audits for
Run freeVibe Science v7.0 — TRACE
FreeScientific research engine with agentic tree search. Infinite loops until discovery, rigorous tracking, adversarial review, serendipity preserved.
Run freeRails Convention Engineer
FreeRails 8.x application architecture, implementation, and review guidance for production codebases. Use when building or reviewing Ruby on Rails 8 features across models, controllers, routes, Hotwire, jobs, APIs, performance, security, and testing. Tri
Run free