Skip to content

Commit 915f4a3

Browse files
committed
fix(ASR): update faster-whisper-xxl r245.3
1 parent 56e3a8f commit 915f4a3

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

LLPlayer/ViewModels/WhisperEngineDownloadDialogVM.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ public class WhisperEngineDownloadDialogVM : Bindable, IDialogAware
1212
{
1313
// currently not reusable at all
1414
public static string EngineURL => "https://github.com/Purfview/whisper-standalone-win/releases/tag/Faster-Whisper-XXL";
15-
public static string EngineFile => "Faster-Whisper-XXL_r245.2_windows.7z";
15+
public static string EngineFile => "Faster-Whisper-XXL_r245.3_windows.7z";
1616
private static string EngineDownloadURL =
17-
"https://github.com/Purfview/whisper-standalone-win/releases/download/Faster-Whisper-XXL/Faster-Whisper-XXL_r245.2_windows.7z";
17+
"https://github.com/umlx5h/LLPlayer/releases/download/v0.0.1/Faster-Whisper-XXL_r245.3_windows.7z";
1818
private static string EngineName = "Faster-Whisper-XXL";
1919
private static string EnginePath = Path.Combine(WhisperConfig.EnginesDirectory, EngineName);
2020

@@ -211,7 +211,7 @@ private async Task<long> DownloadEngineWithProgressAsync(string url, string dest
211211
#region IDialogAware
212212
public string Title { get; set => Set(ref field, value); } = $"Whisper Engine Downloader - {App.Name}";
213213
public double WindowWidth { get; set => Set(ref field, value); } = 400;
214-
public double WindowHeight { get; set => Set(ref field, value); } = 200;
214+
public double WindowHeight { get; set => Set(ref field, value); } = 210;
215215

216216
public bool CanCloseDialog() => !CmdDownloadEngine.IsExecuting;
217217
public void OnDialogClosed() { }

LLPlayer/Views/WhisperEngineDownloadDialog.xaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,11 @@
3737
</Grid.RowDefinitions>
3838

3939
<!-- Select engine -->
40-
<TextBlock Grid.Row="0" FontWeight="Bold" Margin="0 0 0 16">
41-
Download <Hyperlink NavigateUri="{Binding Source={x:Static vm:WhisperEngineDownloadDialogVM.EngineURL}}" helpers:HyperlinkHelper.OpenInBrowser="True">
42-
<TextBlock Text="{Binding Source={x:Static vm:WhisperEngineDownloadDialogVM.EngineFile}}" />
43-
</Hyperlink>
40+
<TextBlock Grid.Row="0" Margin="0 0 0 16" FontWeight="Bold">
41+
Download <Hyperlink NavigateUri="{Binding Source={x:Static vm:WhisperEngineDownloadDialogVM.EngineURL}}" helpers:HyperlinkHelper.OpenInBrowser="True">
42+
<TextBlock Text="{Binding Source={x:Static vm:WhisperEngineDownloadDialogVM.EngineFile}}" /></Hyperlink>
43+
<LineBreak />
44+
<Run FontWeight="Normal" Text="-> Whisper\Faster-Whisper-XXL\faster-whisper-xxl.exe"/>
4445
</TextBlock>
4546

4647
<!-- Download & Cancel button -->

0 commit comments

Comments
 (0)