如何使用 HTML 5 Web 应用程序(使用 Sencha touch 或其他方式)在 iPad 上离线播放视频
我创建了一个网络应用程序(使用 Sencha Touch,但这并不重要),我正在尝试使其离线。这是一个包含图像和视频的幻灯片。 在线时,它使用 HTML 中的标签播放 mp4 视频。 我可以使用缓存清单文件使其脱机,该文件适用于所有其他内容,但我的视频在脱机时无法播放。
我使用“添加到主屏幕”按钮在主屏幕上创建一个网络应用程序图标。
I've created a web app (using Sencha Touch, but that's not important) which I'm trying to get offline. It's a slideshow with images and a video.
When online, it plays an mp4 video using the tag in HTML .
I can take it offline using a cache manifest file, which works fine for all other content, but my video won't play when offline.
I've used the "add to home screen" button to create a web app icon on the home screen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您始终可以以 Base64 字符串而不是 URL 的形式提供视频源。这样,视频实际上嵌入到文档中,并且无论互联网连接如何,都可以播放。
请参阅此示例页面并查看页面源代码: http://iandevlin.com/html5/data -uri/video.php
You can always provide the source of your video as a base64 string instead of as a URL. That way the video is actually embedded in the document and will play regardless of internet connectivity.
See this example page and view the page source: http://iandevlin.com/html5/data-uri/video.php