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

66 total results found

The Chantry - Department of Trivia

Department of Trivia

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-...

Attic

The Scripts

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>] # ...

The Basics

documentation
TranscriptOMatic
transcript
whisper.cpp

Workflow

documentation
transcript
TranscriptOMatic
whisper.cpp
ollama

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...