HTML5 音频:使用了哪个源?

发布于 2024-12-12 03:07:41 字数 608 浏览 0 评论 0 原文

有没有办法确定在为 HTML5 audio 元素指定多个源时使用哪个 source

例如,我有以下 HTML 代码:

<audio preload="auto">
    <source type="audio/ogg;codecs=vorbis" src="http://example.org/sample.ogg"/>
    <source type="audio/mpeg;codecs=mp3" src="http://example.org/sample.mp3"/>
</audio>

现在我想知道是否使用了 ogg 文件或 mp3 文件。我尝试在 source 元素上注册 onloadonloadeddata 事件处理程序,但它们从未被调用。此外,audio 元素的 src 在加载后不会发生变化,并且 source 元素没有 readyState 属性。

是否可以通过其他方式查出这一点?

Is there a way to determine which source was used when specifying multiple sources to an HTML5 audio element?

E.g. I have this HTML code:

<audio preload="auto">
    <source type="audio/ogg;codecs=vorbis" src="http://example.org/sample.ogg"/>
    <source type="audio/mpeg;codecs=mp3" src="http://example.org/sample.mp3"/>
</audio>

Now I want to know if the ogg or the mp3 file was used. I tried to register onload and onloadeddata event handlers on the source elements but they where never called. Also src of the audio element is unchanged after load and the source elements don't have a readyState property.

Can this be found out in any other way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幼儿园老大 2024-12-19 03:07:41

audio 元素的 onloadeddata 注册一个函数,请查看 currentSrc

Register a function for onloadeddata of the audio element, in that look at the currentSrc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文