From 4dc8499f4d3ea3d63a6b8512110b75e443734537 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Tue, 19 Dec 2023 00:37:17 +0000 Subject: [PATCH] Workflow update --- lsio/faster-whisper/docker-compose.yaml | 2 +- lsio/faster-whisper/docker-run.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lsio/faster-whisper/docker-compose.yaml b/lsio/faster-whisper/docker-compose.yaml index 6277622..5e08463 100644 --- a/lsio/faster-whisper/docker-compose.yaml +++ b/lsio/faster-whisper/docker-compose.yaml @@ -16,7 +16,7 @@ services: - PGID=${PGID:-100} # specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). - TZ=${TZ:-Europe/Amsterdam} - # Whisper model that will be used for transcription. From `tiny`, `base`, `small` and `medium`, all with `-int8` compressed variants + # Whisper model that will be used for transcription. From `tiny`, `base`, `small` and `medium.en`, all with `-int8` compressed variants - WHISPER_MODEL=tiny-int8 # Number of candidates to consider simultaneously during transcription. - WHISPER_BEAM=1 # optional diff --git a/lsio/faster-whisper/docker-run.sh b/lsio/faster-whisper/docker-run.sh index 201cc90..e69e924 100644 --- a/lsio/faster-whisper/docker-run.sh +++ b/lsio/faster-whisper/docker-run.sh @@ -9,7 +9,7 @@ docker run -d \ -e PUID=${PUID:-1024} `# for UserID` \ -e PGID=${PGID:-100} `# for GroupID` \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ - -e WHISPER_MODEL=tiny-int8 `# Whisper model that will be used for transcription. From `tiny`, `base`, `small` and `medium`, all with `-int8` compressed variants` \ + -e WHISPER_MODEL=tiny-int8 `# Whisper model that will be used for transcription. From `tiny`, `base`, `small` and `medium.en`, all with `-int8` compressed variants` \ -e WHISPER_BEAM=1 `# optional` `# Number of candidates to consider simultaneously during transcription.` \ -e WHISPER_LANG=en `# optional` `# Language that you will speak to the add-on.` \ -p 10300:10300 `# Wyoming connection port.` \