When manually placing the model files in the Application.persistentDataPath path and then disabling the "Is model in Steaming Assets" and "Init on Awake" the files are not loaded.
Here is the code used:
if (File.Exists(Path.Combine(Application.persistentDataPath, "STT", sttModel)))
{
whisperManager.ModelPath = Path.Combine(Application.persistentDataPath, "STT", sttModel);
whisperManager.InitModel();
whisperManager.OnProgress += WhisperManagerOnOnProgress;
}
This works in Editor and iOS but not on Android
When manually placing the model files in the Application.persistentDataPath path and then disabling the "Is model in Steaming Assets" and "Init on Awake" the files are not loaded.
Here is the code used:
if (File.Exists(Path.Combine(Application.persistentDataPath, "STT", sttModel)))
{
whisperManager.ModelPath = Path.Combine(Application.persistentDataPath, "STT", sttModel);
whisperManager.InitModel();
whisperManager.OnProgress += WhisperManagerOnOnProgress;
}
This works in Editor and iOS but not on Android