我已经为 Google TV 下载了 HTML5 Template2,我已经修改了 DataProvider.js 文件,以便对我的视频、视频缩略图链接和信息进行硬编码。
在计算机上运行时,该站点在 chrome 浏览器上运行良好。这是我的网站 http://mob11.zxq.net/
我使用 Phonegap for android 制作了一个 APK,它在我的 Nexus7 上运行良好。
但是,当我将相同的 APK 下载到我的 Visio-Co start google tv buddy box 时,应用程序显示完美,但视频根本无法播放。此外,当我尝试使用 google tv 中的 chrome 浏览器访问我的网站时,网站本身显示正常,但视频再次无法播放。
This is a sample of what my dataProvider.js looks like
var gtv = gtv || {
jq: {}
};
/** * DataProvider class. Defines a provider for all data (Categories, Images & Videos) shown in the template.
*/
gtv.jq.DataProvider = function() {
};
var x = new gtv.jq.DataProvider();
gtv.jq.DataProvider.prototype.getData = function() {
var tourism = [
{
sources:
['https://s3.amazonaws.com/besthaitivids/tourism/welcometohaiti.mp4'],
title: 'Welcome to Haiti',
thumb: 'https://s3.amazonaws.com/besthaitipic/tourism/touristlogo.jpg',
description: ['Bienvenue en Haiti'],
subtitle: 'La Perle des antilles'
}
];
var data = {
categories: [
{
name: 'Tourisim',
videos: tourism
}
]
};
当我在 google tv 中访问我的网站时,如何让视频在 chrome 上播放?
如何让视频在我的 Visio-costar google tv 上安装的 Google APK APP 中播放?
非常感谢任何帮助。