HTML 5 音频播放器和 Android/iOS
我的问题是: HTML5 音频播放器可以播放设备中的文件吗?那么,如果用户从网站下载音频文件并将其保存在设备上,播放器可以以离线方式(没有互联网)读取和播放该文件吗?播放器位于 Web 应用程序中。
谢谢 纽万
my question is: Can the HTML5 Audio Player play files from the device. So if the user downloads a audio file from a website and save it on the device can the player read and play this file in offline modus(without internet)? The player is in an WebApp.
thanx
newone
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Android 和 iPhone 具有基于 WebKit 的浏览器,应支持 文件 API
您可以询问用户打开文件,并使用文件 API 将其读取为 DataURL,如上所述。
Android and iPhone has WebKit based browser and should support File API
You can ask user to open file, and read it as DataURL using File API, described above.
iOS 不支持“文件”输入。另外,iOS 无法将媒体文件作为数据 URL 加载,只能播放真实的 URL 文件。
"file" input is not supported in iOS. Also, iOS cannot load media files as data URL, only real URL files can be played.