We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to use recognition based on an existing file. Whatever the file URL is set to I get:
*** -[NSURL initFileURLWithPath:]: nil string parameter
Have Tried:
all fail with the same error.
The text was updated successfully, but these errors were encountered:
seems local file works, but can't use it with nativePath or a remote URL so
file:///Users/jkneen/Library/Developer/CoreSimulator/Devices/DF3E928C-1CD8-4DEA-9E5B-37272E8B5900/data/Containers/Data/Application/0DDC2CD8-574E-47C6-9EA6-FFA7037DECBE/tmp/85E7.mp4
fails with that error.
Sorry, something went wrong.
OK got it, so it's type is URL but it's doing additional stuff to it in the module. If you pass a complete URL it needs to be:
soundURL = NSURL.URLWithString(args.url);
not
NSURL.fileURLWithPath
So suggest we have 3 types:
var SOURCE_TYPE_URL = 'url'; var SOURCE_TYPE_MICROPHONE = 'microphone'; var SOURCE_TYPE_FILENAME = 'filename';
No branches or pull requests
Unable to use recognition based on an existing file. Whatever the file URL is set to I get:
Have Tried:
all fail with the same error.
The text was updated successfully, but these errors were encountered: