2
IOS13损坏的<audio>标签是否已用作连接到音频上下文的音频缓冲区?
我们目前正在开发一个网站,该网站允许用户播放连接到audiocontext的简单音频标签。我们知道IOS的技术问题,例如由用户手势启动的播放。一切正常,直到IOS12。既然IOS13已经发布,那么什么也无法工作了。 它适用于所有台式机,Android和IOS(最高IOS13)。 有什么想法吗? 使用连接到iPhone的Desktop上的Safari进行调试时,控制台中没有错误消息。 https://codepen.io/gchad/pen/WNNvzzd <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <body> <div> <h1>Play Audio Tag connected to audio context</h1> <div id="playbutton" style="width:100px; height:100px; background:blue; color:white; margin:auto; text-align: center; font-size: 30px; cursor: pointer;"> Play </div> <audio id="myPlayer" crossorigin="anonymous" > <source src="https://s3-us-west-2.amazonaws.com/s.cdpn.io/858/outfoxing.mp3"/> <!--http://commondatastorage.googleapis.com/codeskulptor-assets/week7-brrring.m4a--> </audio> </div> <script> var player = document.getElementById('myPlayer'), …