Setting blob MIME type to wav still results in webM
问题 I followed this article (the code up to step 6) to make an audio recorder as below. After making the audioBlob , I call a custom function to upload the blob. This function works for other file types. I pass { type: 'audio/wav' } to the Blob constructor. The resulting file indeed pretends to be a wave file, and would play fine in the browser, but not on iOS. I checked with http://checkfiletype.com/ and discovered the file was actually WebM: How do I ensure the file is in fact a .wav file? The