Advanced Search
Search Results
60 total results found
Creating (Almost) Live Transcripts
Preparing the Environment
How to set up Discord, sound, whisper.cpp and everything else.
Prerequisites
Before you start: Have your Raspberry Pi 500 up and running Have a basic understanding of how to work with the Raspberry Pi Have ssh up and running (via raspi-config) Know what the Linux command line interface is and how to work with it Know what a shell scr...
WTF a Raspberry Pi 500?
When I began working on this idea, it was the hardware I had at hand.
Setting-Up Files, Folders and Setting Permissions
Files & Folders Create the recommended folder and file structure: cd $HOME; mkdir -p meetings/lib/ meetings/bin/ meetings/recordings/; touch meetings/bin/meeting-start meetings/bin/meeting-stop meetings/bin/meeting-follow; chmod 755 meetings/bin/meeting-start ...
Finding the Right Sound Device
If you want to recreate TranscriptOMatic on a system different from a Raspberry Pi 500, you will need to find out the right devices and names on your own. This was my approach, that might give you an idea where to start finding the right settings for your envi...
TranscriptOMatic — Post Production
The Scripts
transcribe_audio.sh — Pre-Context
#!/usr/bin/env bash set -euo pipefail # ------------------------------------------------------------ # transcribe-audio.sh # Post-session transcription on Mac using whisper-cli # Usage: transcribe-audio.sh [--de|--en|--auto] <audio.wav> # --------------------...
transcribe-audio.sh - With Context
#!/usr/bin/env bash set -euo pipefail # ------------------------------------------------------------ # transcribe-audio.sh # Post-session transcription on Mac using whisper-cli # Usage: transcribe-audio.sh [--de|--en|--auto] [--game <slug>] # ...
Adding Context
The Context-Template
# Optimised for: qwen2.5:32b via ollama # System: macOS Tahoe 26.3.1 # Ollama: 0.17.7 # Command: # OLLAMA_MODEL=qwen2.5:32b summarize-meeting.sh --game packs_and_prejudice # Last Change: 2026-03-09 ## ## This meta-information document is used by the summariz...
Ariana
Ariana's Tiny House
On the Move For when the house has to be moved, a checklist exists covering what needs to be unplugged, tied down, or relocated for safe travel. Basic Configuration Arianas TinyHome is a Tumbleweed Elm Equator 26' with 2 Lofts. Dimension Metric Imperial ...
normalize-transcript.py
#!/usr/bin/env python3 """ normalize-transcript.py Replaces alias variants in a whisper transcript with their canonical primary keys, based on a TranscriptOMatic YAML meta file. Usage: python3 normalize-transcript.py <transcript.txt> --game <slug> [--min-...
Attic
transcribe-audio.sh - mit Prompt
#!/usr/bin/env bash set -euo pipefail # ------------------------------------------------------------ # transcribe-audio.sh # Post-session transcription on Mac using whisper-cli # Usage: transcribe-audio.sh [--de|--en|--auto] [--game <slug>] # ...