Advanced Search
Search Results
45 total results found
Department of Trivia: Description
The outside impression of the chantry’s property deceives. The main building is a 500 years old mansion from England, that was disassembled, shipped to the US and rebuild from original materials. The windows, especially the stained-glass windows, former church...
Department of Trivia: The Haunting
The premises are haunted by Mac & Cheese. How these magically imbued dishes came to life is unclear. An unauthorized experiment with some herbs from Briony’s sunken garden might have something to do with it. But it is generally not talked about. Sometimes seve...
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-...
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>] # ...
From Recording to Summary
# Einmalig: Prompt-Datei aus YAML generieren uv run --with pyyaml python3 bin/build-whisper-prompt.py --game packs_and_prejudice # → meta/packs_and_prejudice.prompt editieren, Ballast löschen # Danach wie gewohnt: transcribe-audio.sh --en --vad-preset loose...
build-whisper-prompt.py
#!/usr/bin/env python3 """ build-whisper-prompt.py Extracts primary keys from a TranscriptOMatic YAML meta file and writes them one per line to a .prompt file for use as a whisper vocabulary hint. The output is a starting point — edit it manually to remove co...
Building Consistency
Testing several phonetic spellings for names with a lot of errors Maybe testing several spellings for a name Using not the 'most correct' version, but the most useful one Using a section of the game's YAML document to note down which variant worked with what ...
summarize-meeting.sh
#!/usr/bin/env bash set -euo pipefail # ------------------------------------------------------------ # summarize-meeting.sh # Post-session summarization on Mac using ollama # Usage: summarize-meeting.sh [--de|--en] [--game <slug>] [<transcript.txt>] # ...
build-summary-context.py
#!/usr/bin/env python3 """ build-summary-context.py Extracts summarizer-relevant fields from a TranscriptOMatic YAML meta file, stripping transcription-specific fields (aliases, safe, lang, deedname, etc.) that confuse LLMs when used as summary context. Outpu...