Questions tagged «web-audio-api»

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