From 56141be0d4981ef75352223ceee926559b95111a Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Sat, 13 Dec 2025 20:58:36 -0500 Subject: [PATCH] Disable timestamp overlay to fix exit 234 error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixed the exit 234 error when generating individual thumbnails by disabling the timestamp overlay feature which was causing FFmpeg font-related failures on some systems. Changes: - ShowTimestamp: false (was true) - ShowMetadata: only true for contact sheets (was always true) The timestamp overlay was causing issues because: 1. DejaVu Sans Mono font might not be available on all systems 2. FFmpeg exits with code 234 when drawtext filter fails 3. Individual thumbnails don't need timestamp overlays anyway Contact sheets still get metadata headers, which is the main use case for showing video information on thumbnails. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index f6b43d7..3d0c1ed 100644 --- a/main.go +++ b/main.go @@ -3251,8 +3251,8 @@ func (s *appState) executeThumbJob(ctx context.Context, job *queue.Job, progress ContactSheet: contactSheet, Columns: columns, Rows: rows, - ShowTimestamp: true, - ShowMetadata: true, + ShowTimestamp: false, // Disabled to avoid font issues + ShowMetadata: contactSheet, } result, err := generator.Generate(ctx, config)