Syed Wajid
Syed Wajid

Reputation: 81

Html5 audio recording not working on iphone

Does html5 audio recording is supported on iPhone. I have written code but it is not working. Is there any thing wrong with the code

 <h2>capture=microphone</h2>
 <input type="file" accept="audio/*;capture=microphone"></input>
 <h2>Test 2</h2>
 <input type="file" accept="audio/*" id="capture" />

It is working fine on Android 2.1 If iPhone do not support html5 audio recording, what is the best alternative way to implement it?

Upvotes: 4

Views: 1950

Answers (1)

Stephen Gennard
Stephen Gennard

Reputation: 1910

Yes, this will currently only work on Android 3.0 devices, you could however look at using phone gap and their javascript media apis

http://docs.phonegap.com/en/1.2.0/phonegap_media_capture_capture.md.html#CaptureAudioOptions

Upvotes: 1

Related Questions