-
-
Notifications
You must be signed in to change notification settings - Fork 98
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature Request: 对未知长度音频的支持 #46
Comments
使用 不过我很好奇,音频流是什么样子的,如何确定起点之类的问题。如果方便可以提供一个链接 sample |
啊,忘了跨域这回事了。个人项目的协议定义是允许跨域的,忘了这一茬。 音频地址是 可以在这个链接观察使用 因为是服务器 转码部分的源码在此。 |
我试了一下,确实获取不到长度信息。 Chrome 在播放完之前,获取到的长度信息都是 |
另外,你们的项目很有意思,我很感兴趣。 |
所以 MediaSource 至少可以在加载完就拿到准确长度,Firefox 也是,就是不知道为什么 Chrome 有问题。
magic-akari ***@***.***> 于2021年11月30日周二 下午6:00写道:
… 我试了一下,确实获取不到长度信息。 Chrome 在播放完之前,获取到的长度信息都是 Infinity,而 NaN
实际上是我计算出来的错误结果。而播放结束后才获取完整的长度,但是这个时候长度可能已经没什么用了。
这个可以特殊处理一下,比如隐藏。但是还有个更大的问题:*如何绘制进度条*。
我切回了浏览器原始外观的播放器,发现他的进度条也很“随缘”。
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#46 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACCEFLVFFWDKWGHVNEVAVCTUOSODJANCNFSM5JBBFOOQ>
.
|
可以来 https://t.me/project_anni 讨论
magic-akari ***@***.***> 于2021年11月30日周二 下午6:01写道:
… 另外,你们的项目很有意思,我很感兴趣。
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#46 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACCEFLVFQYVU65IMBH6P6Q3UOSOHZANCNFSM5JBBFOOQ>
.
|
|
之前有试过,之所以转成 我在想 |
目前如果无法正常解析音频长度,获取到的
duration
就会是NaN
。当音频是以流的形式呈现时,
chrome
就不能正常获取音频长度了。Firefox
会边加载边更新音频长度,但chrome
不会,会一直保持NaN
,即音频长度不可用。某种解决方法是通过
MediaSource
替代音频直链,通过fetch
获取音频内容,同时在音频流完全加载完毕时将duration
写入。如果希望的话,还可以通过ServiceWorker
将fetch
结果缓存。个人实现方式如下:https://github.com/ProjectAnni/anni-embed-player/blob/747014c8c832cbf2702604b074e79e67db949502/player.js#L26-L59
当然,也可以选择不支持,但希望在进度条处有正确的提示,而非当前的
Infinity/NaN
。The text was updated successfully, but these errors were encountered: