Hi,
I want to play a audio captcha in my app. I have a URI to a audio file that the content-type is "audio/x-wav". I have tried the audio tag element, like this:
<audio controls="controls">
<source src="http://..." type="audio/x-wav">
Your browser does not support the audio element.
</audio>
This didn't work. I got "Error: Unsupported audio type or invalid file path". I built a html file and tested in google chrome and it worked.
It is normal to "audio/x-wav" not be supported?
If so, what's the alternative to play my audio captchas in "audio/x-wav" from a URI?
Thanks