Replies: 1 comment
-
|
u r using .net binding of ggml version of whisper, but here is the repo of the original python version, u should contact the author of the .net binding |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm using C#/Windows/.Net Maui (or Console app)
I've written a simple class to play with transcriptions.
I first recorded my voice into a .M4A file knowing I need to convert it to PCM.
The program loads the LLM and it appears that the processor is valid.
The TestMp3ToWhisper() loads the recording, converts it to PCM and attempts to pass it into the processor. But I don't get anything back from the processor but a blank res variable.
What am I missing?
I initialize the API and use the API using this:
`
public static class WhisperHandler
{
private static WhisperFactory? _factory;
private static WhisperProcessor? _processor;
private static string DBName = "ggml-large-v1.bin";
private static string dbPath = string.Empty;
`
Beta Was this translation helpful? Give feedback.
All reactions