Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

45 total results found

Department of Trivia: Description

Department of Trivia The Chantry - Department of Trivia

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

Department of Trivia The Chantry - Department of Trivia

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

The Scripts

#!/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

The Scripts

#!/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

Workflow

# 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

The Scripts

#!/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

The Basics

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

The Scripts

#!/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

The Scripts

#!/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...