LeSplooch
LeSplooch
I didn't get any file called deepspeech.lib with the tar.gz file you mentioned on your README and the native_client version for Windows, and the native_client is added to my path.
Indeed, there is a file called `libdeepspeech.so.if.lib`.
> @LeSplooch if you clone this repo, and change the "deepspeech" in sys/build.rs to deepspeech.so, does it work then? Oh sorry I just saw your post, I'll try this asap...
I was about to do it but I've never worked with folder crates yet, so I'd need a little help in order to import that into my code. I just...
I'm really sorry for the delayed answer. So `deepspeech-rs` is cloned and linked in `Cargo.toml` and `./deepspeech-rs/sys/build.rs` has been modified to this : ```rust fn main() { println!("cargo:rustc-link-lib=deepspeech.so"); } ```...
I still have a link.exe fatal error message with both `deepspeech.so` and `deepspeech.so.if`. ` = note: LINK : fatal error LNK1181: cannot open input file 'deepspeech.so.lib'` ` = note: LINK...
The absolute path to `native_client` is among my `Path` env vars.
@retep998 If I understand you correctly, I should create a value containing a comma seperated array with the path to the folder where my `deepspeech.lib` file is, and assign it...
I tried it and now I have another error, but I think it's a good sign, it looks like the libraries have been found but it can't handle them for...
First, here are the files you requested as a ZIP file because Github doesn't allow their formats to be published seperately. [wavy_test.zip](https://github.com/libcala/wavy/files/4124259/wavy_test.zip) I just tried again with a new project....