This commit is contained in:
niksedk 2023-09-03 08:34:21 +02:00
parent 7f308e25e1
commit 0cb69d824e
2 changed files with 2 additions and 2 deletions

View File

@ -1917,7 +1917,7 @@ namespace Nikse.SubtitleEdit.Forms.AudioToText
public static void DownloadCudaForWhisperFaster(IWin32Window owner)
{
if (MessageBox.Show(string.Format(LanguageSettings.Current.Settings.DownloadX, "Faster-Whisper CUDA (GPU)"), "Subtitle Edit", MessageBoxButtons.YesNoCancel) != DialogResult.Yes)
if (MessageBox.Show(string.Format(LanguageSettings.Current.Settings.DownloadX, "cuBLAS and cuDNN libs"), "Subtitle Edit", MessageBoxButtons.YesNoCancel) != DialogResult.Yes)
{
return;
}

View File

@ -35509,7 +35509,7 @@ namespace Nikse.SubtitleEdit.Forms
Configuration.Settings.Tools.WhisperChoice == WhisperChoice.PurfviewFasterWhisper &&
!WhisperAudioToText.IsFasterWhisperCudaInstalled())
{
MessageBox.Show("Faster Whisper CUDA (GPU) seems to be missing.");
MessageBox.Show("cuBLAS or cuDNN seems to be missing.");
WhisperAudioToText.DownloadCudaForWhisperFaster(this);
}
else