我已经为Google TV下载了HTML5 Template2,我修改了DataProvider.js文件,以便对我的视频进行硬编码,视频缩略图链接&资讯
在计算机上运行时,此网站在Chrome浏览器上运行良好。 这是我的网站 http://mob11.zxq.net/
我使用Phonegap为Android制作了一个APK,它对我的Nexus7非常有效。
然而,当我将相同的APK下载到我的Visio-Co启动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
}
]
};
当我在谷歌电视中访问我的网站时,如何让视频在Chrome上播放?
如何在我的Visio-costar google tv上安装的Google APK APP中播放视频?
非常感谢任何帮助。