前言: 今天接到一个需求,需要获取某个.mp3音频文件的时间长度和指定音频audio在某个时间点进行播放(比如说这个视频有4分钟,我要让它默认从第2秒的时候开始播放),这里当然想到了H5中的audio元素,当然我们平时看这个标签上显示的音频时间是时:分:秒的格式的因此需要涉及到秒和时间格式的转化.通过查阅了网上的一些资料,最终完美的把这些功能点做好了.这里分享一下,希望能够帮助有需要的小伙伴. 获取音频时长: function getAudioDuration(src) { let audio…
这个播放流程有一次当初不是很理解,做个记录,代码中的中文部分,原文档是有解释的:To move a stream of rendering data through the endpoint buffer, the client alternately calls the IAudioRenderClient::GetBuffer method and theIAudioRenderClient::ReleaseBuffer method. The client accesses the dat…