You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
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