Voice recording on iPhone by using Safari and HTML5

前端 未结 6 625
醉话见心
醉话见心 2020-12-24 08:08

I am developing a simple web application which only records a voice from microphone but I have some trouble.

HTML5 voice recording function works well on chrome and

6条回答
  •  情歌与酒
    2020-12-24 08:47

    Safari on iOS 11 does NOT support the 2 standards which would make audio (only) recording possible (and easy to implement):

    • HTML Media Capture for audio (spec, correct syntax ) - audio recording should be passed to a native app which should pass the result back to the browser for upload (it works for video and picture)
    • MediaStream Recording API (spec, demo) - allows you to record to a blob directly in the browser. The recording can be downloaded or uploaded to a web server.

提交回复
热议问题