-
Notifications
You must be signed in to change notification settings - Fork 483
New issue
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
HTTP request to send wav file #124
Comments
Finaly tried nodejs type request for the same POST request, received succes output, but i guess haven't managed to send correctly .wav file: var data1 = new FormData(); var dataString = '@sample.wav'; var options = { function callback(error, response, body) { request(options, callback);` Output gave the following result: |
BTW is sending a speech file won't be supported anymore? And any other form of audio - voice recognition? |
Is it solved? I also find speech to text platform. what reference do you use? |
Hi, as far as I know http post request has a feature for sending .wav file:
Can you please guide me of how to make the same with jQuery Ajax POST. I've tried this way:
data geenrated like that: 'var data = new FormData(); data.append('file',$('input[type=file]')[0].files[0]);'
It gives illegal invocation error.
The text was updated successfully, but these errors were encountered: