mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 20:52:44 +01:00
Fix #7315
This commit is contained in:
parent
7f308e25e1
commit
0cb69d824e
@ -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;
|
||||
}
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user