From 1763a84ffc7d61a83ca66614441e34e74ff142fe Mon Sep 17 00:00:00 2001 From: Richard R Date: Sun, 31 May 2026 00:16:28 -0600 Subject: [PATCH] docs(env): clarify FFMPEG_BIN usage for audio processing in docs and env example Update .env.example and environment variable documentation to clarify that FFMPEG_BIN can override the ffmpeg binary path for general audio processing, not just audiobooks. Note that it is also used by compute worker Whisper audio decode in addition to audiobook routes. --- .env.example | 2 +- docs-site/docs/reference/environment-variables.md | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index 1bb2a04..bce7bd8 100644 --- a/.env.example +++ b/.env.example @@ -72,7 +72,7 @@ S3_BUCKET= # COMPUTE_WORKER_URL=http://localhost:8081 # COMPUTE_WORKER_TOKEN=local-compute-token -# (Optional) Override ffmpeg binary path used for audiobook processing +# (Optional) Override ffmpeg binary path used for audio processing # FFMPEG_BIN= # (Optional) Test/dev overrides diff --git a/docs-site/docs/reference/environment-variables.md b/docs-site/docs/reference/environment-variables.md index 3d9ebd8..4e98f8a 100644 --- a/docs-site/docs/reference/environment-variables.md +++ b/docs-site/docs/reference/environment-variables.md @@ -348,7 +348,9 @@ There are no dedicated env vars for these runtime settings. ### FFMPEG_BIN -Override ffmpeg binary path used for audiobook processing. +Override ffmpeg binary path used for audio processing. + +- Used by audiobook processing routes and compute worker Whisper audio decode. ## Testing and CI