使用 html-5 在音频中播放特定的开始和结束持续时间
Posted
技术标签:
【中文标题】使用 html-5 在音频中播放特定的开始和结束持续时间【英文标题】:play specific start and end duration within audio using html-5 【发布时间】:2017-06-05 02:34:39 【问题描述】:我想创建一个网页,就像这个问题中解释的那样: How to play specific start and end duration in html5 audio? 我的问题是如何创建这样的表和必要的 ajax 来播放具有特定开始和结束持续时间的音频。谢谢。
【问题讨论】:
请发布具体问题而不是作业。尝试并在遇到特定事情时回来。 【参考方案1】:您可以使用Media Fragments URI播放特定时间范围的媒体资源
<label>Play first 30 seconds of audio</label><br><audio controls src="https://upload.wikimedia.org/wikipedia/commons/b/be/Hidden_Tribe_-_Didgeridoo_1_Live.ogg#t=0,30"></audio><br><br>
<label>Play from 30 to 50 seconds of audio</label><br><audio controls src="https://upload.wikimedia.org/wikipedia/commons/b/be/Hidden_Tribe_-_Didgeridoo_1_Live.ogg#t=30,50"></audio>
【讨论】:
以上是关于使用 html-5 在音频中播放特定的开始和结束持续时间的主要内容,如果未能解决你的问题,请参考以下文章