如何在我的 Sencha Touch 应用程序中嵌入视频?
我正在开发一个 Sencha Touch ipad 应用程序,它从 JSON feed 中提取内容。 JSON 包含一些图像以及来自 Youtube 和 Vimeo 的一些视频 URL。
我从哪里开始尝试播放应用程序中的嵌入视频?
I'm working on a Sencha Touch ipad app which pulls content from a JSON feed. The JSON contains some images, plus some video URLs from Youtube and Vimeo.
Where do I start trying to play embedded video in the app?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在我最初提出问题几周后,我有一些关于这个主题的提示可以分享。
我们构建了一个与 Sencha Touch 演示应用非常相似的应用 Touchstyle。一个区别是我们想要显示视频以及 JSON feed 中引用的图像。
对于单个媒体项目,我们的 JSON 看起来像这样,其类型可以是
image
或video
:为了在 Sencha Touch 中嵌入 Youtube 和 Vimeo 视频,您需要使用两个站点提供的 iframe 嵌入代码。以下 XTemplate 将正确的
video_id
插入到相关的嵌入代码中,具体取决于视频的托管位置。总的来说,这种方法效果很好,尽管我们确实遇到了一些与在缓冲轮播中加载视频有关的问题(另一个问题的主题)。
A few weeks on from my original question, I have a few tips to share on this topic.
We've built an app quite similar to the Sencha Touch demo app Touchstyle. One difference was we wanted to display videos as well as images referenced in our JSON feed.
Our JSON looks something like this for a single item of media, which could be of type
image
orvideo
:In order to embed Youtube and Vimeo videos in Sencha Touch, you have to use the iframe embed code that both sites provide. The following XTemplate inserts the correct
video_id
into the relevant embed code, depending on where the video is hosted.By and large this method has worked fine, although we did experience some problems to do with loading video in a buffered carousel (a topic for another question).
您可以从研究 Sencha Touch Kitchensink 开始:媒体 >视频示例
http://dev.sencha.com/deploy/touch/examples/kitchensink/
You can start by looking into the Sencha Touch Kitchensink : Media > Video Example
http://dev.sencha.com/deploy/touch/examples/kitchensink/