From 911bc718eeb4c60eb7321e36e45a6b23c760c7a7 Mon Sep 17 00:00:00 2001 From: Nikolaj Olsson Date: Thu, 3 Oct 2024 08:45:48 +0200 Subject: [PATCH] Add large-v3-turbo to Whisper OpenAI models (not tested) --- src/libse/AudioToText/WhisperModel.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/libse/AudioToText/WhisperModel.cs b/src/libse/AudioToText/WhisperModel.cs index bd05db4ba..e4a45f4d9 100644 --- a/src/libse/AudioToText/WhisperModel.cs +++ b/src/libse/AudioToText/WhisperModel.cs @@ -98,6 +98,12 @@ namespace Nikse.SubtitleEdit.Core.AudioToText Size = "2.9 GB", Urls = new []{ "https://openaipublic.azureedge.net/main/whisper/models/e5b1a55b89c1367dacf97e3e19bfd829a01529dbfdeefa8caeb59b3f1b81dadb/large-v3.pt" }, }, + new WhisperModel + { + Name = "large-v3-turbo", // large-v3-turbo + Size = "1.5 GB", + Urls = new []{ "https://openaipublic.azureedge.net/main/whisper/models/aff26ae408abcba5fbf8813c21e62b0941638c5f6eebfb145be0c9839262a19a/large-v3-turbo.pt" }, + }, }; } }