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
Hello. I am using C with clang to use CoquiSTT via its C API. However, if I link the provided native_client libraries, everything compiles fine but when I run the executable, nothing is printed to the console (there are some printfs). This is the code I am using:
Interestingly enough, if I remove just the line STT_CreateModel("../model/model.tflite", &model);, everything works as expected and the two printfs work. I've also tried creating a file and the same thing happens: it only works when that line is removed.
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
-
Hello. I am using C with clang to use CoquiSTT via its C API. However, if I link the provided native_client libraries, everything compiles fine but when I run the executable, nothing is printed to the console (there are some
printf
s). This is the code I am using:And my project structure:
(native_client is
native_client.tflite.Windows.tar.xz
uncompressed)Compilation command:
Interestingly enough, if I remove just the line
STT_CreateModel("../model/model.tflite", &model);
, everything works as expected and the twoprintf
s work. I've also tried creating a file and the same thing happens: it only works when that line is removed.I have tested this with versions 1.3.0 and 1.2.0.
Beta Was this translation helpful? Give feedback.
All reactions