├── README.md ├── TVMarketAPI.md └── tv └── game ├── androidTV.apk ├── baidu.json ├── en ├── app_en.png ├── app_list_en.png ├── video_en.png └── video_list_en.png ├── home.json ├── home_en.json ├── home_faq.json ├── home_faq_en.json ├── home_faq_mobile.json ├── home_music.json ├── home_port.json ├── home_port_tablet.json ├── main.png ├── mobile ├── category.png ├── new_cn │ ├── apps.png │ ├── category.png │ ├── detail.png │ ├── main.png │ ├── movie.png │ ├── star.png │ └── star_search.png ├── search.png ├── video.png ├── video_album.png └── video_detail.png ├── mobile_port.json ├── open_source ├── IMG_20141018_095748.jpg ├── IMG_20141018_105432.jpg ├── IMG_20141018_105433.jpg ├── IMG_20141018_105434.jpg ├── IMG_20141018_105514.jpg ├── IMG_20141018_105515.jpg ├── IMG_20141018_105656.jpg ├── IMG_20141018_105659.jpg ├── IMG_20141018_105701.jpg ├── IMG_20141018_105706.jpg ├── IMG_20141018_105714.jpg ├── IMG_20141018_105716.jpg ├── IMG_20141018_105719.jpg ├── IMG_20141018_110110.jpg ├── IMG_20141018_110111.jpg └── IMG_20141018_110113.jpg ├── share.md ├── version_upgrade.json ├── video.png └── video_cate.png /README.md: -------------------------------------------------------------------------------- 1 | #Design for TV metro demo 2 | 3 | the Metro style is constructed by two kinds of elements: 4 | Album and Display Item 5 | 6 | Album can contain multi albums and display items. 7 | 8 | Display item can be defined as video, game, app, music and so on. 9 | 10 | You can deprive your own game/app/video detail item from display item. 11 | 12 | Album 13 | | 14 | __________________|___________________ 15 | | ... | | ... | 16 | Album Album Display Item Display Item 17 | 18 | The main page is also defined as Album. 19 | 20 | ##API Style 21 | ###API description 22 | http://host/v1/ns/type/?id=res_id 23 | 24 | ns : namespace, resource type 25 | 26 | type: item or item list 27 | 28 | id : resource id in back-end server system 29 | 30 | ###Details 31 | http://host/game(video/app)/item?id=12346 32 | return item list 33 | 34 | ###Album 35 | http://host/game(video/app)/album?id=6464 36 | return album 37 | 38 | ###Category 39 | http://host/game(video/app)/category?id=123456 40 | return album 41 | 42 | Note: 43 | Album and Category are most same concept. 44 | 45 | ##Tab "app/game"(主风格"应用") 46 | 47 | 48 | 49 | ##Tab "video" (主风格"视频") 50 | 51 | 52 | 53 | ##Tab "video category"(主风格"视频分类") 54 | 55 | 56 | 57 | ##Home JSON definition 58 |

59 | Home JSON Sample 60 |

61 | 62 | ##Album 63 | { 64 | 65 | "data": [ 66 | { 67 | "items": [display items], 68 | "images": { }, 69 | "name":"game tab name", 70 | "times": { 71 | "updated": 0, 72 | "created": 0 73 | }, 74 | "_ui": { 75 | "type": "metro" 76 | }, 77 | "id": "recommend", 78 | "type": "album", 79 | "ns": "game" 80 | }, 81 | { 82 | "items": [display items], 83 | "images": { }, 84 | "name": "game tab Name", 85 | "times": { 86 | "updated": 0, 87 | "created": 0 88 | }, 89 | "_ui": { 90 | "type": "metro" 91 | }, 92 | "id": "categories", 93 | "type": "album", 94 | "ns": "game" 95 | }, 96 | { 97 | "items": [dispay items], 98 | "images": { }, 99 | "name": "video tab name", 100 | "times": { 101 | "updated": 0, 102 | "created": 0 103 | }, 104 | "_ui": { 105 | "type": "metro" 106 | }, 107 | "id": "recommend", 108 | "type": "album", 109 | "ns": "video" 110 | }, 111 | { 112 | "items": [display items], 113 | "images": { }, 114 | "name": "video tab name", 115 | "times": { 116 | "updated": 0, 117 | "created": 0 118 | }, 119 | "_ui": { 120 | "type": "metro" 121 | }, 122 | "id": "categories", 123 | "type": "album", 124 | "ns": "video" 125 | } 126 | ], 127 | "preload": { 128 | "images": [] 129 | }, 130 | "update_time": 0 131 | 132 | } 133 | 134 | ##Display Item 135 | 136 | { 137 | 138 | "target": { 139 | "type": "item" 140 | }, 141 | "images": { 142 | "text": { 143 | "url": "", 144 | "ani": {}, 145 | "pos": {} 146 | }, 147 | "icon": { 148 | "url": "", 149 | "ani": {}, 150 | "pos": {} 151 | }, 152 | "back": { 153 | "url": "http://xxx/fffff.png", 154 | "ani": {}, 155 | "pos": {} 156 | }, 157 | "spirit": { 158 | "url": "", 159 | "ani": {}, 160 | "pos": {} 161 | } 162 | }, 163 | "name": "高德地图", 164 | "times": { 165 | "updated": 1404466152, 166 | "created": 1404454443 167 | }, 168 | "_ui": { 169 | "type": "metro_cell_banner", 170 | "layout": { 171 | "y": 1, 172 | "x": 1, 173 | "w": 1, 174 | "h": 2 175 | } 176 | }, 177 | "id": "180", 178 | "type": "item", 179 | "ns": "game" 180 | } 181 | 182 | 183 | 184 | ##Download test APK 185 |

下载测试的APK (download test apk), you can run it at android pad or TV

186 | Click Download 187 | 188 | ##Welcome to Contact US 189 | 190 | 191 | 192 | -------------------------------------------------------------------------------- /TVMarketAPI.md: -------------------------------------------------------------------------------- 1 | # GameCenter/AppStore API 草案(9月4日更新) 2 | 3 | ## 概念 4 | 5 | * **Namespace** 命名空间,可缩写为**NS**,代表是GameCenter或AppStore,可选的值为: 6 | * `app` AppStore 7 | * `game` GameCenter 8 | * `video` Videos 9 | 10 | * **Item** 商店中售卖的商品,对应GameCenter中的Game,AppStore中的App 11 | 12 | * **Album** 专辑,一组**Item**和**Album**的集合,有一些**Album**的ID是特定用途的: 13 | * `recommend` 推荐页(主页) 14 | * `categories` 所有**Category**的入口页 15 | * `{category}` 分类`category`中的所有**Item**集合 16 | * `{category}/{subcategory}` `category`中子分类`subcategory`种所有的**Item**集合 17 | 18 | * **Type** 组织**Item**的一种方式,可选值为: 19 | * `album` 以专辑为视角的**Item**组织方式,是一个集合 20 | * `item` 以单个**Item**为视角,是单个**Item** 21 | 22 | * **UI Type** UI类型,用于表达展示一组**Item**或一个**Item**的展示方法,例如 23 | * `metro` 使用类Metro布局展示 24 | * `detail` 展示一个**Item**的Detail 25 | 26 | * **Sort** 观察一组**Item**的排序方式,可选值为: 27 | * `weighting` 综合排序(默认) 28 | * `created` 创建时间逆序 29 | * `updated` 更新时间逆序 30 | * `name` 名称正序 31 | * `score` 最佳 32 | * `download` 下载数 33 | 34 | * **Image** 一张图片的URL及展现形式 35 | 36 | * **Image Group** 多张图片组成的一个展现效果,分为背景图和覆盖图 37 | 38 | * **Flags** 一组标志变量,用于表示**Item**的某种能力,例如: 39 | * `upgrade` App或Game是否可更新 40 | * `joystick`: Game是否支持游戏手柄 41 | 42 | 43 | ## 资源的URL模式 44 | 45 | 通用模式为`/{NS}/{Type}?id={ID}`,例如: 46 | * `/game/album?id=album1_id` GameCenter中ID为`album1_id`的游戏专辑 47 | * `/game/album?id=recommand` Game的主页内容 48 | * `/game/album?id=action` 所有动作类游戏(`action`)的专辑 49 | * `/game/item?id=game1_id` GameCenter中ID为`game1_id`的单个游戏 50 | 51 | ## 实体 52 | 53 | 实体是**Item**, **Album** 一种表达形式,使用**JSON**形式 54 | 55 | * **规则** 56 | 1. 使用`{Entity}`来表达引用一个实体的类型 57 | 2. 在API调用时,指定`ui`参数,可使返回的Item具有不同的FieldSet 58 | 59 | 60 | * `Image` 单张图片: 61 | 62 | ``` 63 | { 64 | "url": "http://...", // 图片的URL 65 | "bgcolor": "#3Fde88", // 图片在绘制前需要绘制的背景色 66 | "pos": {"x":100, "y":300}, // (Optional) 图片的位置,如果为null则为坐标0,0 67 | "ani": { ... } // (Optional) 图片的动画效果,如果为null则表示无动画 68 | "size": {"w": 890, "h": 789} // 图片大小 69 | } 70 | ``` 71 | 72 | * `ImageGroup` 一组图片,有背景图和其他覆盖在其上面的图片 73 | 74 | ``` 75 | { 76 | "bg": {Image}, // 背景图 77 | "text": {Image}, // 文字图 78 | "spirit": {Image}, // 精灵图 79 | "icon": {Image}, // 图标 80 | "thumb":{Image}, // 缩略图 81 | //... 82 | } 83 | ``` 84 | 85 | * `UI` 关于UI显示的相关信息 86 | 87 | ``` 88 | { 89 | "type": "...",// 当前UI的UI Type 90 | "layout": { // 适用于当前UI Type的布局信息,如不存在为null 91 | "w": .. 92 | "h": .. 93 | } 94 | } 95 | ``` 96 | 97 | * `DisplayItem` 作为一个**Item**在列表中展示的基本Fields 98 | 99 | ``` 100 | { 101 | "ns": "app|game|video", // Namespace 102 | "type": "category|album|item", // Type 103 | "id": "...", // 字符串形式的ID,对于Category来说,可能为空串 104 | "name": "..." // 名称 105 | "images": {ImageGroup}, // 图片 106 | "_ui": {UI} 107 | } 108 | ``` 109 | 110 | * `Item` **Item**完整公用信息(对于App或Game来说还有各自的信息) 111 | 112 | ``` 113 | // extends DisplayItem 114 | { 115 | "package": "...", // 应用包名 116 | "phrase": "...", // 一句话简介 117 | "vendor": { // 开发商 118 | "id": "..." 119 | "name": "北京春雨天下软件有限公司" 120 | }, 121 | "flags": { 122 | "upgrade": true 123 | }, // 标志 124 | "description": "..." // 完整描述 125 | "times": { 126 | "updated": 1909088888, // 更新时间 127 | }, 128 | "ver": { 129 | "code": "200", // 字符串形式的Version Code 130 | "name": "1.0.1" // 字符串形式的Version name 131 | }, 132 | "sizes": { 133 | "package": 1941662, // Byte单位的下载包大小 134 | "installed": 20098900, // Byte单位的安装后占用空间 135 | }, 136 | "category": { 137 | "id": "c1/c2", // 最为详细的分类路径 138 | "name": "...", // 所在分类名称 139 | }, 140 | "score": 70, // 0-100的评分 141 | "screenshots": [ 142 | {ImageGroup}, 143 | {ImageGroup}, 144 | // ... 145 | ] 146 | "counts": { 147 | "download": ... // 下载数量 148 | // ... 149 | }, 150 | } 151 | ``` 152 | 153 | * `Album` **Album**信息,包含有**Item**的列表 154 | 155 | ``` 156 | // extends DisplayItem 157 | { 158 | "is_category": true|false,这个album是否是category 159 | "sort": "..", // sort 规则,如为Album返回则此值为null 160 | "pagi": "..", // 当前页码(基于1) 161 | "items": [ 162 | {DisplayItem}, 163 | {DisplayItem}, 164 | // ... 165 | ] 166 | } 167 | ``` 168 | 169 | * `AlbumList` 多页`Album` 170 | 171 | ``` 172 | { 173 | "body": [{Album}, {Album}, ...] 174 | "preload": { 175 | "images": [ 176 | "...", 177 | "..." 178 | ] 179 | } 180 | } 181 | ``` 182 | * `ItemList` 183 | 184 | ``` 185 | { 186 | "body": [{Item}, {Item}], 187 | "preload": { 188 | "images": [ 189 | "...", 190 | "..." 191 | ] 192 | } 193 | } 194 | ``` 195 | 196 | ## API 197 | 198 | ### API公用信息 199 | 200 | 所有API都会附加下列参数,使用HTTP参数形式传递 201 | 202 | * `locale` 区域代码,例如`zh_CN` 203 | * `res` 分辨率,值为`hd720` | `hd1080` | `hd2160` 204 | * `device`设备类型 205 | * `device_id` 设备ID,一般为设备MAC地址的md5 206 | * `ns_key` **Namespace**的Key 207 | * `opaque` 利用`ns_key`和URI即参数算出的URL签名 208 | 209 | ### API 列表 210 | * **GET** `/1/{ns}/category?id={id}&sort={sort}&page={page}&filter=...` 返回`{AlbumList}` 211 | 获取**Category**内容 212 | 1. `page`是基于1的,默认值为`1` 213 | 1. `sort`参数对非**Category**类**Album**不起作用 214 | 215 | * **GET** `/1/{ns}/album?id={id}`,返回: `{AlbumList}` 216 | 获取**Album**内容 217 | 218 | * **GET** `/1/{ns}/search?q=word&category=c1/c2`,返回: `{AlbumList}` 219 | 搜索 220 | 221 | * **GET** `/1/{ns}/home`,返回: `{AlbumList}` 222 | 主页 223 | 224 | * **GET** `/1/{ns}/item?id={id}`,返回: `{ItemList}` 225 | 获取单个**Item**信息 226 | 227 | * **GET** `/1/{ns}/download?item={id}`,返回: 待定 228 | -------------------------------------------------------------------------------- /tv/game/androidTV.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/androidTV.apk -------------------------------------------------------------------------------- /tv/game/baidu.json: -------------------------------------------------------------------------------- 1 | { 2 | "items": [ 3 | { 4 | "target": { 5 | "type": "item_show_direct", 6 | "params": "http://lx.cdn.baidupcs.com/file/e41c85fbe54a75ba1bbf959c247fd4ce?bkt=p2-qd-189&xcode=1937751eded35988cd66934041498a844c7a78b489f59a7a0b2977702d3e6764&fid=3372312957-250528-230558975335747&time=1414984213&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-gAHCkwyDaDc3APfp6sy3%2BBQVC7I%3D&to=hc&fm=Nan,B,U,nc&sta_dx=1241&sta_cs=910&sta_ft=mkv&sta_ct=3&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=228312286&mlogid=847488396&vuk=3372312957&vbdid=3565250699&ifn=Schindlers.list.1993.HDTV.2Audio.MiniSD-TLF.mkv&fn=Schindlers.list.1993.HDTV.2Audio.MiniSD-TLF.mkv" 7 | }, 8 | "images": { 9 | "back": { 10 | "url": "http://ts1.mm.bing.net/th?id=HN.608037347915531004&pid=1.7", 11 | "ani": { }, 12 | "pos": { } 13 | } 14 | }, 15 | "name": "辛德勒的名单", 16 | "times": { 17 | "updated": 0, 18 | "created": 0 19 | }, 20 | "_ui": { 21 | "layout": { 22 | "y": 1, 23 | "x": 1, 24 | "w": 1, 25 | "h": 1 26 | }, 27 | "type": "metro_cell_title" 28 | }, 29 | "id": "辛德勒的名单", 30 | "type": "search", 31 | "ns": "video" 32 | }, 33 | { 34 | "target": { 35 | "type": "item_show_direct", 36 | "params": "http://lx.cdn.baidupcs.com/file/032bd4a55cb8d2cb69e1cb691c9517ae?bkt=p-fc82f1feb9c7b2dec2670a1e4e69965b&xcode=647d4d829bf4971ee0900a75f9744360fd6a6da2effe5215837047dfb5e85c39&fid=3372312957-250528-350607575867893&time=1414986253&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-8NgA53ykHzdO8cWgAThkMyX81kA%3D&to=cb&fm=Nan,B,U,nc&sta_dx=872&sta_cs=2&sta_ft=mkv&sta_ct=7&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=596170485&mlogid=1252377125&vuk=3372312957&vbdid=3565250699&ifn=Heaven.2002.BD.MiniSD-TLF.mkv&fn=Heaven.2002.BD.MiniSD-TLF.mkv" 37 | }, 38 | "images": { 39 | "back": { 40 | "url": "http://ts4.mm.bing.net/th?id=HN.608014846578131016&pid=1.7", 41 | "ani": { }, 42 | "pos": { } 43 | } 44 | }, 45 | "name": "疾走天堂", 46 | "times": { 47 | "updated": 0, 48 | "created": 0 49 | }, 50 | "_ui": { 51 | "layout": { 52 | "y": 1, 53 | "x": 2, 54 | "w": 1, 55 | "h": 1 56 | }, 57 | "type": "metro_cell_title" 58 | }, 59 | "id": "疾走天堂", 60 | "type": "search", 61 | "ns": "video" 62 | }, 63 | { 64 | "target": { 65 | "type": "item_show_direct", 66 | "params": "http://ws.cdn.baidupcs.com/file/873ed57dacd031deb9d38e3169975d4d?bkt=p-55be8ed03c5a6be25f974f1cba4514c1&xcode=153e76aa51522fb88a1cf3348bed3398d7712c826683bbd6837047dfb5e85c39&fid=3372312957-250528-36191323040095&time=1414986438&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-chZ8hIhTOyUU%2BOb8q5hK9hysODk%3D&to=cb&fm=Nan,B,U,nc&sta_dx=485&sta_cs=48&sta_ft=mkv&sta_ct=7&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=246159615&mlogid=866777492&vuk=3372312957&vbdid=3565250699&ifn=Run.Lola.Run.1998.BDRip.x264.AAC.MiniSD-TLF.mkv&fn=Run.Lola.Run.1998.BDRip.x264.AAC.MiniSD-TLF.mkv" 67 | }, 68 | "images": { 69 | "back": { 70 | "url": "http://fxp.buychuan.com/upload/MovieStills/2012053013462810795921.jpg", 71 | "ani": { }, 72 | "pos": {"x":0, "y":345} 73 | } 74 | }, 75 | "name": "罗拉快跑", 76 | "times": { 77 | "updated": 0, 78 | "created": 0 79 | }, 80 | "_ui": { 81 | "layout": { 82 | "y": 1, 83 | "x": 3, 84 | "w": 1, 85 | "h": 1 86 | }, 87 | "type": "metro_cell_title" 88 | }, 89 | "id": "罗拉快跑", 90 | "type": "search", 91 | "ns": "video" 92 | }, 93 | { 94 | "target": { 95 | "type": "item_show_direct", 96 | "params": "http://ws.cdn.baidupcs.com/file/873ed57dacd031deb9d38e3169975d4d?bkt=p-55be8ed03c5a6be25f974f1cba4514c1&xcode=153e76aa51522fb88a1cf3348bed3398d7712c826683bbd6837047dfb5e85c39&fid=3372312957-250528-36191323040095&time=1414986438&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-chZ8hIhTOyUU%2BOb8q5hK9hysODk%3D&to=cb&fm=Nan,B,U,nc&sta_dx=485&sta_cs=48&sta_ft=mkv&sta_ct=7&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=246159615&mlogid=866777492&vuk=3372312957&vbdid=3565250699&ifn=Run.Lola.Run.1998.BDRip.x264.AAC.MiniSD-TLF.mkv&fn=Run.Lola.Run.1998.BDRip.x264.AAC.MiniSD-TLF.mkv" 97 | }, 98 | "images": { 99 | "back": { 100 | "url": "http://www.izhizhi.com/attached/20110424173836_57843.bmp", 101 | "ani": { }, 102 | "pos": {"x":0, "y":345} 103 | } 104 | }, 105 | "name":"香水", 106 | "times": { 107 | "updated": 0, 108 | "created": 0 109 | }, 110 | "_ui": { 111 | "layout": { 112 | "y": 2, 113 | "x": 1, 114 | "w": 1, 115 | "h": 1 116 | }, 117 | "type": "metro_cell_title" 118 | }, 119 | "id": "香水", 120 | "type":"search", 121 | "ns": "video" 122 | }, 123 | { 124 | "target": { 125 | "type": "item_show_direct", 126 | "params": "http://qd2.cache.baidupcs.com/file/a569800ea197aeae3e3f61df25996ac8?bkt=p2-qd-189&xcode=20e577360e05c03b7cad257d26f644970feec0397a52d007&fid=3372312957-250528-1123878662008531&time=1414986978&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-kzQfxMPFZeZWiLn33wqatwnCCx4%3D&to=hc,qc2&fm=Nan,Q,U,ny&sta_dx=1582&sta_cs=45&sta_ft=mkv&sta_ct=2&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=788474648&mlogid=1781389093&vuk=3372312957&ifn=Boyhood.2014.HDRip.x264.AAC-FooKaS.mkv&fn=Boyhood.2014.HDRip.x264.AAC-FooKaS.mkv" 127 | }, 128 | "images": { 129 | "back": { 130 | "url": "http://pic.wenwen.soso.com/p/20090501/20090501140141-214299557.jpg", 131 | "ani": { }, 132 | "pos": { } 133 | } 134 | }, 135 | "name": "少年时代", 136 | "times": { 137 | "updated": 0, 138 | "created": 0 139 | }, 140 | "_ui": { 141 | "layout": { 142 | "y": 2, 143 | "x": 2, 144 | "w": 1, 145 | "h": 1 146 | }, 147 | "type": "metro_cell_title" 148 | }, 149 | "id": "少年时代", 150 | "type": "search", 151 | "ns": "video" 152 | }, 153 | { 154 | "target": { 155 | "type": "item_show_direct", 156 | "params": "http://lx.cdn.baidupcs.com/file/14075f3b321e9de7f0cb02e3602a804b?bkt=p2-qd-189&xcode=4e3d6a8c3af9fb730e0b93b9de1fc1fbf1b4608b05119259837047dfb5e85c39&fid=3372312957-250528-291485812669171&time=1414987210&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-VBRgJupnwrlDyohGgGZup0BUxzE%3D&to=cb&fm=Nan,B,U,nc&sta_dx=785&sta_cs=14&sta_ft=mkv&sta_ct=2&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=664090621&mlogid=1024296902&vuk=3372312957&vbdid=3565250699&ifn=Dazed.and.Confused.1993.CC.BD.MiniSD-TLF.mkv&fn=Dazed.and.Confused.1993.CC.BD.MiniSD-TLF.mkv" 157 | }, 158 | "images": { 159 | "back": { 160 | "url": "http://photo.hanyu.iciba.com/upload/chinesewiki/k/L/kLm1.jpg", 161 | "ani": { }, 162 | "pos": { } 163 | } 164 | }, 165 | "name": "年少轻狂", 166 | "times": { 167 | "updated": 0, 168 | "created": 0 169 | }, 170 | "_ui": { 171 | "layout": { 172 | "y": 2, 173 | "x": 3, 174 | "w": 1, 175 | "h": 1 176 | }, 177 | "type": "metro_cell_title" 178 | }, 179 | "id": "年少轻狂", 180 | "type": "search", 181 | "ns": "video" 182 | }, 183 | { 184 | "target": { 185 | "type": "item_show_direct", 186 | "params": "http://lx.cdn.baidupcs.com/file/647af4d29f6a43756717f20d521bc254?bkt=p2-qd-189&xcode=de345516bed6627f7b001ad232b44b8d54d1790645aedd3b837047dfb5e85c39&fid=3372312957-250528-713820507188339&time=1414987309&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-ZW9owm1d%2BrWOOkSoBHQIpP2hm2g%3D&to=hc&fm=Nan,B,U,nc&sta_dx=1912&sta_cs=27&sta_ft=mkv&sta_ct=4&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=942357224&mlogid=3906625818&vuk=3372312957&vbdid=3565250699&ifn=Love.Exposure.2008.BluRay.MiniSD-TLF.mkv&fn=Love.Exposure.2008.BluRay.MiniSD-TLF.mkv" 187 | }, 188 | "images": { 189 | "back": { 190 | "url": "http://ctc.qzs.qq.com/music/photo/singer_300/12/300_singerpic_12912_0.jpg", 191 | "ani": { }, 192 | "pos": { } 193 | } 194 | }, 195 | "name": "爱的曝光", 196 | "times": { 197 | "updated": 0, 198 | "created": 0 199 | }, 200 | "_ui": { 201 | "layout": { 202 | "y": 3, 203 | "x": 1, 204 | "w": 1, 205 | "h": 1 206 | }, 207 | "type": "metro_cell_title" 208 | }, 209 | "id": "爱的曝光", 210 | "type": "search", 211 | "ns": "video" 212 | }, 213 | { 214 | "target": { 215 | "type": "item_show_direct", 216 | "params": "http://lx.cdn.baidupcs.com/file/183a779acedfc876c7f83d3c1c0e41ca?bkt=p2-qd-189&xcode=280d4cef100451862a4c331581fc039eb45d4599d11aefa4837047dfb5e85c39&fid=3372312957-250528-680721515330145&time=1415065446&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-l%2F9QjXgufyvw3rg4FSmKU7rVAUc%3D&to=cb&fm=Nan,B,U,nc&sta_dx=1112&sta_cs=12&sta_ft=mkv&sta_ct=5&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=998188890&mlogid=2597681758&vuk=3372312957&vbdid=3565250699&ifn=Fargo.1996.REMASTERED.3Audio.BD.MiniSD-TLF.mkv&fn=Fargo.1996.REMASTERED.3Audio.BD.MiniSD-TLF.mkv" 217 | }, 218 | "images": { 219 | "back": { 220 | "url": "http://movie.chinayes.com/media/0W608/1502_5/2011112417392914037.jpg", 221 | "ani": { }, 222 | "pos": { } 223 | } 224 | }, 225 | "name": "冰血暴", 226 | "times": { 227 | "updated": 0, 228 | "created": 0 229 | }, 230 | "_ui": { 231 | "layout": { 232 | "y": 3, 233 | "x": 2, 234 | "w": 1, 235 | "h": 1 236 | }, 237 | "type": "metro_cell_title" 238 | }, 239 | "id": "冰血暴", 240 | "type": "search", 241 | "ns": "video" 242 | }, 243 | { 244 | "target": { 245 | "type": "item_show_direct", 246 | "params": "http://lx.cdn.baidupcs.com/file/9cc3d511b9fc36e6f335dfe84c24ad48?bkt=p2-qd-189&xcode=455d46629d07653134fe14cb28d7996ca5246acd404220c9837047dfb5e85c39&fid=3372312957-250528-645728000995339&time=1414994125&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-xacE3zZGyaYm21BgvbdCyA3XE8E%3D&to=hc&fm=Nan,B,U,nc&sta_dx=832&sta_cs=282&sta_ft=mkv&sta_ct=5&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=971094281&mlogid=1248660190&vuk=3372312957&vbdid=3565250699&ifn=No.Country.for.Old.Men.2007.BDRip.x264.2AAC.miniSD-TLF.mkv&fn=No.Country.for.Old.Men.2007.BDRip.x264.2AAC.miniSD-TLF.mkv" 247 | }, 248 | "images": { 249 | "back": { 250 | "url": "http://img6.paipaiimg.com/00000000/item-51C3FFF3-0EAD3D0A00000000040100002E00D07A.0.300x300.jpg", 251 | "ani": { }, 252 | "pos": { } 253 | } 254 | }, 255 | "name": "老无所依", 256 | "times": { 257 | "updated": 0, 258 | "created": 0 259 | }, 260 | "_ui": { 261 | "layout": { 262 | "y": 3, 263 | "x": 3, 264 | "w": 1, 265 | "h": 1 266 | }, 267 | "type": "metro_cell_title" 268 | }, 269 | "id": "老无所依", 270 | "type": "search", 271 | "ns": "video" 272 | }, 273 | { 274 | "target": { 275 | "type": "item_show_direct", 276 | "params": "" 277 | }, 278 | "images": { 279 | "back": { 280 | "url": "http://img21.mtime.cn/pi/2011/06/28/141743.72999170.jpg", 281 | "ani": { }, 282 | "pos": { } 283 | } 284 | }, 285 | "name": "人工智能", 286 | "times": { 287 | "updated": 0, 288 | "created": 0 289 | }, 290 | "_ui": { 291 | "layout": { 292 | "y": 4, 293 | "x": 1, 294 | "w": 1, 295 | "h": 1 296 | }, 297 | "type": "metro_cell_title" 298 | }, 299 | "id": "人工智能", 300 | "type": "search", 301 | "ns": "video" 302 | }, 303 | { 304 | "target": { 305 | "type": "item_show_direct", 306 | "params": "http://lx.cdn.baidupcs.com/file/b7ee84c38fd2b144ad4405746d63443b?bkt=p2-qd-189&xcode=dd953cdde9064a2b23b76bf4257c7547205aa5eda61282b0837047dfb5e85c39&fid=3372312957-250528-226856747803640&time=1414994668&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-NRrHaewMIljBWp2Tq12d7hEPLHw%3D&to=cb&fm=Qin,B,U,nc&sta_dx=1114&sta_cs=16&sta_ft=mkv&sta_ct=3&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=176955624&mlogid=1748546391&vuk=3372312957&vbdid=3565250699&ifn=The.Terminal.2004.BD.2Audio.MiniSD-TLF.mkv&fn=The.Terminal.2004.BD.2Audio.MiniSD-TLF.mkv" 307 | }, 308 | "images": { 309 | "back": { 310 | "url": "http://img4.imgtn.bdimg.com/it/u=1458174997,1654069431&fm=23&gp=0.jpg", 311 | "ani": { }, 312 | "pos": { } 313 | } 314 | }, 315 | "name": "幸福终点站", 316 | "times": { 317 | "updated": 0, 318 | "created": 0 319 | }, 320 | "_ui": { 321 | "layout": { 322 | "y": 4, 323 | "x": 2, 324 | "w": 1, 325 | "h": 1 326 | }, 327 | "type": "metro_cell_title" 328 | }, 329 | "id": "幸福终点站", 330 | "type": "search", 331 | "ns": "video" 332 | }, 333 | { 334 | "target": { 335 | "type": "item_show_direct", 336 | "params": "http://124.167.232.82/ws.cdn.baidupcs.com/file/c80b1584ac3167b53b2b633732ef6656?bkt=p2-qd-189&xcode=44713e1925d9a3a62e3cb2695250e24ad20e871d3e17d914837047dfb5e85c39&fid=3372312957-250528-639213851911861&time=1414994842&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-SlJbjw%2BZKiEZrpuSHDB4w919B8g%3D&to=cb&fm=Nan,B,U,nc&sta_dx=861&sta_cs=9&sta_ft=mkv&sta_ct=5&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=363481557&mlogid=1860284249&vuk=3372312957&vbdid=3565250699&ifn=Chinatown.1974.BD.MiniSD-TLF.mkv&fn=Chinatown.1974.BD.MiniSD-TLF.mkv&wshc_tag=0&wsts_tag=54571b9c&wsid_tag=72ff0386&wsiphost=ipdbm" 337 | }, 338 | "images": { 339 | "back": { 340 | "url": "http://img1.imgtn.bdimg.com/it/u=3711434569,1416842260&fm=23&gp=0.jpg", 341 | "ani": { }, 342 | "pos": { } 343 | } 344 | }, 345 | "name": "唐人街", 346 | "times": { 347 | "updated": 0, 348 | "created": 0 349 | }, 350 | "_ui": { 351 | "layout": { 352 | "y": 4, 353 | "x": 3, 354 | "w": 1, 355 | "h": 1 356 | }, 357 | "type": "metro_cell_title" 358 | }, 359 | "id": "唐人街", 360 | "type": "search", 361 | "ns": "video" 362 | }, 363 | { 364 | "target": { 365 | "type": "item_show_direct", 366 | "params": "http://lx.cdn.baidupcs.com/file/4ac4fc80973281dd25e754bcc06f3e35?bkt=p2-qd-189&xcode=1f74a6b8dd265356d4133217d38e96d9b96704e6eb9e2325837047dfb5e85c39&fid=3372312957-250528-908228239521412&time=1414995444&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-CamtjRLZ9G56Hg5XAFnLZtLPJr0%3D&to=hc&fm=Nan,B,U,nc&sta_dx=1563&sta_cs=298&sta_ft=mkv&sta_ct=5&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=651312906&mlogid=3773426893&vuk=3372312957&vbdid=3565250699&ifn=Seven.Samurai.1954.BD.MiniSD-TLF.mkv&fn=Seven.Samurai.1954.BD.MiniSD-TLF.mkv" 367 | }, 368 | "images": { 369 | "back": { 370 | "url": "http://img31.mtime.cn/mg/2013/11/19/092911.35284369.jpg", 371 | "ani": { }, 372 | "pos": { } 373 | } 374 | }, 375 | "name": "七武士-黑泽明", 376 | "times": { 377 | "updated": 0, 378 | "created": 0 379 | }, 380 | "_ui": { 381 | "layout": { 382 | "y": 5, 383 | "x": 1, 384 | "w": 1, 385 | "h": 1 386 | }, 387 | "type": "metro_cell_title" 388 | }, 389 | "id": "七武士-黑泽明", 390 | "type": "search", 391 | "ns": "video" 392 | }, 393 | { 394 | "target": { 395 | "type": "item_show_direct", 396 | "params": "http://lx.cdn.baidupcs.com/file/c9b9f7425cb3e336aaf648ca7ad1cd2a?bkt=p2-qd-189&xcode=6b1d46975b4d53abeba81f293cedc66719c8a549e0a11460837047dfb5e85c39&fid=3372312957-250528-764146462767334&time=1414995615&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-MVwH%2Bu37Y1PGVMq%2Fa1vrKheFkzc%3D&to=hc&fm=Bei,B,U,nc&sta_dx=1502&sta_cs=403&sta_ft=mkv&sta_ct=3&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=776364687&mlogid=3891142073&vuk=3372312957&vbdid=3565250699&ifn=Titanic.1997.HDTVRip.x264.2AAC.miniSD-TLF.mkv&fn=Titanic.1997.HDTVRip.x264.2AAC.miniSD-TLF.mkv" 397 | }, 398 | "images": { 399 | "back": { 400 | "url": "http://www.auvplayer.com/ap_img/album/taitannikehao_26/s300_3de16851b3214988dd5d973a6650ce36.jpg", 401 | "ani": { }, 402 | "pos": { } 403 | } 404 | }, 405 | "name": "泰坦尼克号", 406 | "times": { 407 | "updated": 0, 408 | "created": 0 409 | }, 410 | "_ui": { 411 | "layout": { 412 | "y": 5, 413 | "x": 2, 414 | "w": 1, 415 | "h": 1 416 | }, 417 | "type": "metro_cell_title" 418 | }, 419 | "id": "泰坦尼克号", 420 | "type": "search", 421 | "ns": "video" 422 | }, 423 | { 424 | "target": { 425 | "type": "item_show_direct", 426 | "params": "http://8.37.233.12/ws.cdn.baidupcs.com/file/ade0901e4efbd25731b0eb537c2c57b2?bkt=p2-qd-189&xcode=77be8eec3857ab4c80e6f183abcb8923174e2fc92d5e4d7f837047dfb5e85c39&fid=3372312957-250528-831319060983413&time=1414995709&sign=FDTAXERB-DCb740ccc5511e5e8fedcff06b081203-8im4TyjBSqB64XuDpXwXqC2U6Qw%3D&to=hc&fm=Nan,B,U,nc&sta_dx=1656&sta_cs=229&sta_ft=mkv&sta_ct=3&newver=1&newfm=1&flow_ver=3&expires=8h&rt=pr&r=502666041&mlogid=1843790508&vuk=3372312957&vbdid=3565250699&ifn=Avatar.2009.BluRay.2Audio.MiniSD-TLF.mkv&fn=Avatar.2009.BluRay.2Audio.MiniSD-TLF.mkv&wshc_tag=0&wsts_tag=54571eff&wsid_tag=627e0ca2&wsiphost=ipdbm" 427 | }, 428 | "images": { 429 | "back": { 430 | "url": "http://img4.imgtn.bdimg.com/it/u=3816755549,320195405&fm=23&gp=0.jpg", 431 | "ani": { }, 432 | "pos": { } 433 | } 434 | }, 435 | "name": "阿凡达", 436 | "times": { 437 | "updated": 0, 438 | "created": 0 439 | }, 440 | "_ui": { 441 | "layout": { 442 | "y": 5, 443 | "x": 3, 444 | "w": 1, 445 | "h": 1 446 | }, 447 | "type": "metro_cell_title" 448 | }, 449 | "id": "阿凡达", 450 | "type": "search", 451 | "ns": "video" 452 | } 453 | ], 454 | "images": { }, 455 | "name": "百度云", 456 | "times": { 457 | "updated": 0, 458 | "created": 0 459 | }, 460 | "_ui": { 461 | "type": "metro" 462 | }, 463 | "id": "baidu", 464 | "type": "item", 465 | "ns": "video" 466 | }, 467 | -------------------------------------------------------------------------------- /tv/game/en/app_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/en/app_en.png -------------------------------------------------------------------------------- /tv/game/en/app_list_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/en/app_list_en.png -------------------------------------------------------------------------------- /tv/game/en/video_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/en/video_en.png -------------------------------------------------------------------------------- /tv/game/en/video_list_en.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/en/video_list_en.png -------------------------------------------------------------------------------- /tv/game/home_faq.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "data": [ 4 | { 5 | "items": [ 6 | { 7 | "target": { 8 | "type": "item" 9 | }, 10 | "images": { 11 | "back": { 12 | "url": "http://ww2.sinaimg.cn/bmiddle/68418ffbjw1em70paijulj20lo0t8mzk.jpg", 13 | "ani": { }, 14 | "pos": { } 15 | } 16 | }, 17 | "name": "小米双11", 18 | "times": { 19 | "updated": 1409161567, 20 | "created": 1401424855 21 | }, 22 | "_ui": { 23 | "layout": { 24 | "y": 1, 25 | "x": 1, 26 | "w": 1, 27 | "h": 2 28 | }, 29 | "type": "metro_cell_title" 30 | }, 31 | "id": "983197", 32 | "type": "item", 33 | "ns": "video" 34 | }, 35 | { 36 | "target": { 37 | "type": "album" 38 | }, 39 | "images": { 40 | "back": { 41 | "url": "http://ww4.sinaimg.cn/bmiddle/54bf1d09jw1em71185kmaj21hc0u04ce.jpg", 42 | "ani": { }, 43 | "pos": { } 44 | } 45 | }, 46 | "name": "小米电视双11最快破一亿", 47 | "times": { 48 | "updated": 1409162544, 49 | "created": 1407982497 50 | }, 51 | "_ui": { 52 | "layout": { 53 | "y": 1, 54 | "x": 2, 55 | "w": 2, 56 | "h": 1 57 | }, 58 | "type": "metro_cell_title" 59 | }, 60 | "id": "987347", 61 | "type": "item", 62 | "ns": "video" 63 | }, 64 | { 65 | "target": { 66 | "type": "item" 67 | }, 68 | "images": { 69 | "back": { 70 | "url": "http://img2.paipaiimg.com//81046f93/item-0097B2FD-8A53C11100000000000A3B520822191A.0.300x300.jpg", 71 | "ani": { }, 72 | "pos": { } 73 | } 74 | }, 75 | "name": "改装汽车音响", 76 | "times": { 77 | "updated": 1406950917, 78 | "created": 1398690242 79 | }, 80 | "_ui": { 81 | "layout": { 82 | "y": 1, 83 | "x": 5, 84 | "w": 1, 85 | "h": 1 86 | }, 87 | "type": "metro_cell_title" 88 | }, 89 | "id": "982125", 90 | "type": "item", 91 | "ns": "video" 92 | }, 93 | { 94 | "target": { 95 | "type": "item" 96 | }, 97 | "images": { 98 | "back": { 99 | "url": "http://image.box.xiaomi.com/mfsv2/download/s010/p01shnaa7gKl/98UnssjDNwXMAZ.png", 100 | "ani": { }, 101 | "pos": { } 102 | } 103 | }, 104 | "_ui": { 105 | "layout": { 106 | "y": 2, 107 | "x": 3, 108 | "w": 1, 109 | "h": 1 110 | }, 111 | "type": "metro_cell_title" 112 | }, 113 | "name": "推荐位应用", 114 | "times": { 115 | "updated": 1387526511, 116 | "created": 1376617877 117 | }, 118 | "id": "109", 119 | "type": "item", 120 | "ns": "game" 121 | }, 122 | { 123 | "target": { 124 | "type": "album" 125 | }, 126 | "images": { 127 | "back": { 128 | "url": "http://jssq.vnet.cn/Upload/Catch/img4.cache.netease.com/ent/2010/4/3/2010040309421613ef0.jpg", 129 | "ani": { }, 130 | "pos": { } 131 | } 132 | }, 133 | "name": "一网打尽好莱坞", 134 | "times": { 135 | "updated": 1406946528, 136 | "created": 1397787776 137 | }, 138 | "_ui": { 139 | "layout": { 140 | "y": 2, 141 | "x": 4, 142 | "w": 2, 143 | "h": 1 144 | }, 145 | "type": "metro_cell_title" 146 | }, 147 | "id": "695", 148 | "type": "item", 149 | "ns": "video" 150 | }, 151 | { 152 | "target": { 153 | "type": "item" 154 | }, 155 | "images": { 156 | "back": { 157 | "url": "http://www.pingjiata.com/uploadfiles/20130905/1378386790.jpg", 158 | "ani": { }, 159 | "pos": { } 160 | } 161 | }, 162 | "name": "小米发布会", 163 | "times": { 164 | "updated": 1409167788, 165 | "created": 1349856799 166 | }, 167 | "_ui": { 168 | "layout": { 169 | "y": 2, 170 | "x": 2, 171 | "w": 1, 172 | "h": 1 173 | }, 174 | "type": "metro_cell_title" 175 | }, 176 | "id": "696", 177 | "type": "item", 178 | "ns": "video" 179 | }, 180 | { 181 | "target": { 182 | "type": "item" 183 | }, 184 | "images": { 185 | "back": { 186 | "url": "http://h.hiphotos.bdimg.com/album/w%3D2048/sign=6d634438d6ca7bcb7d7bc02f8a316a63/9213b07eca80653813bad9e896dda144ac3482fc.jpg", 187 | "ani": { }, 188 | "pos": { } 189 | } 190 | }, 191 | "name": "香港第一站", 192 | "times": { 193 | "updated": 1406947938, 194 | "created": 1349853434 195 | }, 196 | "_ui": { 197 | "layout": { 198 | "y": 1, 199 | "x": 4, 200 | "w": 1, 201 | "h": 1 202 | }, 203 | "type": "metro_cell_title" 204 | }, 205 | "id": "719", 206 | "type": "item", 207 | "ns": "video" 208 | }, 209 | { 210 | "target": { 211 | "type": "item" 212 | }, 213 | "images": { 214 | "back": { 215 | "url": "http://imgsrc.baidu.com/forum/w%3D580/sign=155b9433b64543a9f51bfac42e168a7b/c8da044e251f95ca778ad871c8177f3e650952ce.jpg", 216 | "ani": { }, 217 | "pos": { } 218 | } 219 | }, 220 | "name": "你是我兄弟", 221 | "times": { 222 | "updated": 1406944370, 223 | "created": 1350477877 224 | }, 225 | "_ui": { 226 | "layout": { 227 | "y": 1, 228 | "x": 6, 229 | "w": 1, 230 | "h": 1 231 | }, 232 | "type": "metro_cell_title" 233 | }, 234 | "id": "755", 235 | "type": "item", 236 | "ns": "video" 237 | }, 238 | { 239 | "target": { 240 | "type": "item" 241 | }, 242 | "images": { 243 | "back": { 244 | "url": "http://www.fwtd.cn/uploads/allimg/130204/1-1302042151125K.jpg", 245 | "ani": { }, 246 | "pos": { } 247 | } 248 | }, 249 | "name": "小米盒子", 250 | "times": { 251 | "updated": 1406944296, 252 | "created": 1350477837 253 | }, 254 | "_ui": { 255 | "layout": { 256 | "y": 2, 257 | "x": 6, 258 | "w": 1, 259 | "h": 1 260 | }, 261 | "type": "metro_cell_title" 262 | }, 263 | "id": "879", 264 | "type": "item", 265 | "ns": "video" 266 | } 267 | ], 268 | "images": { }, 269 | "name": "米粉之家", 270 | "times": { 271 | "updated": 0, 272 | "created": 0 273 | }, 274 | "_ui": { 275 | "type": "metro" 276 | }, 277 | "id": "recommend", 278 | "type": "album", 279 | "ns": "mitvfaq" 280 | }, 281 | { 282 | "items": [ 283 | { 284 | "target": { 285 | "type": "item_list" 286 | }, 287 | "images": { 288 | "back": { 289 | "url": "http://file.market.xiaomi.com/download/Duokan/ac400950-303a-4e31-8615-8aa98e344366/dk204_2139095050_601_20140828154303_1.jpg", 290 | "ani": { }, 291 | "pos": { } 292 | } 293 | }, 294 | "name": "在线视频", 295 | "times": { 296 | "updated": 0, 297 | "created": 0 298 | }, 299 | "_ui": { 300 | "layout": { 301 | "y": 1, 302 | "x": 1, 303 | "w": 1, 304 | "h": 2 305 | }, 306 | "type": "metro_cell" 307 | }, 308 | "id": "5", 309 | "type": "category", 310 | "ns": "video" 311 | }, 312 | { 313 | "target": { 314 | "type": "item_list" 315 | }, 316 | "images": { 317 | "back": { 318 | "url": "http://file.market.xiaomi.com/download/Duokan/d1431eff-d20b-48da-a62a-4a51e0c699b0/dk204_33554432_601_20140825164044_1.jpg", 319 | "ani": { }, 320 | "pos": { } 321 | } 322 | }, 323 | "name": "小米家庭音响", 324 | "times": { 325 | "updated": 0, 326 | "created": 0 327 | }, 328 | "_ui": { 329 | "layout": { 330 | "y": 1, 331 | "x": 2, 332 | "w": 2, 333 | "h": 1 334 | }, 335 | "type": "metro_cell" 336 | }, 337 | "id": "2", 338 | "type": "category", 339 | "ns": "video" 340 | }, 341 | { 342 | "target": { 343 | "type": "item_list" 344 | }, 345 | "images": { 346 | "back": { 347 | "url": "http://file.market.xiaomi.com/download/b95/56d5ce9085f6922d566159eeb99166a7e9504c84/content_sort_education_bg_1080.png", 348 | "ani": { }, 349 | "pos": {"x":0, "y":345} 350 | }, 351 | "icon": { 352 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 353 | "ani": { }, 354 | "pos": { } 355 | } 356 | }, 357 | "name": "蓝牙遥控器", 358 | "times": { 359 | "updated": 0, 360 | "created": 0 361 | }, 362 | "_ui": { 363 | "layout": { 364 | "y": 2, 365 | "x": 3, 366 | "w": 1, 367 | "h": 1 368 | }, 369 | "type": "metro_cell" 370 | }, 371 | "id": "4", 372 | "type": "category", 373 | "ns": "video" 374 | }, 375 | { 376 | "target": { 377 | "type": "item_list" 378 | }, 379 | "images": { 380 | "back": { 381 | "url": "http://file.market.xiaomi.com/download/d07/6ebab501f7352d47d9d51042d87aa16f40df5197/content_sort_variety_bg.png", 382 | "ani": { }, 383 | "pos": {"x":0, "y":345} 384 | }, 385 | "icon": { 386 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 387 | "ani": { }, 388 | "pos": { } 389 | } 390 | }, 391 | "name": "支付", 392 | "times": { 393 | "updated": 0, 394 | "created": 0 395 | }, 396 | "_ui": { 397 | "layout": { 398 | "y": 2, 399 | "x": 4, 400 | "w": 1, 401 | "h": 1 402 | }, 403 | "type": "metro_cell" 404 | }, 405 | "id": "7", 406 | "type": "category", 407 | "ns": "video" 408 | }, 409 | { 410 | "target": { 411 | "type": "item_list" 412 | }, 413 | "images": { 414 | "back": { 415 | "url": "http://file.market.xiaomi.com/download/Duokan/f2a67e48-37aa-4f48-a749-4140045fef12/dk204_50331648_601_20140818162509_1.jpg", 416 | "ani": { }, 417 | "pos": { } 418 | } 419 | }, 420 | "name": "手机助手", 421 | "times": { 422 | "updated": 0, 423 | "created": 0 424 | }, 425 | "_ui": { 426 | "layout": { 427 | "y": 1, 428 | "x": 5, 429 | "w": 1, 430 | "h": 2 431 | }, 432 | "type": "metro_cell" 433 | }, 434 | "id": "3", 435 | "type": "category", 436 | "ns": "video" 437 | }, 438 | { 439 | "target": { 440 | "type": "item_list" 441 | }, 442 | "images": { 443 | "back": { 444 | "url": "http://file.market.xiaomi.com/download/541/c281cf4dc153518ebbfc1de15ea59aaff09fa6bc/content_sort_music_bg.png", 445 | "ani": { }, 446 | "pos": { } 447 | }, 448 | "icon": { 449 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 450 | "ani": { }, 451 | "pos": { } 452 | } 453 | }, 454 | "name": "软件安装", 455 | "times": { 456 | "updated": 0, 457 | "created": 0 458 | }, 459 | "_ui": { 460 | "layout": { 461 | "y": 1, 462 | "x": 6, 463 | "w": 1, 464 | "h": 1 465 | }, 466 | "type": "metro_cell" 467 | }, 468 | "id": "8", 469 | "type": "category", 470 | "ns": "video" 471 | }, 472 | { 473 | "target": { 474 | "type": "item_list" 475 | }, 476 | "images": { 477 | "back": { 478 | "url": "http://file.market.xiaomi.com/download/b95/56d5ce9085f6922d566159eeb99166a7e9504c84/content_sort_education_bg_1080.png", 479 | "ani": { }, 480 | "pos": { } 481 | }, 482 | "icon": { 483 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 484 | "ani": { }, 485 | "pos": { } 486 | } 487 | }, 488 | "name": "游戏手柄", 489 | "times": { 490 | "updated": 0, 491 | "created": 0 492 | }, 493 | "_ui": { 494 | "layout": { 495 | "y": 1, 496 | "x": 7, 497 | "w": 1, 498 | "h": 1 499 | }, 500 | "type": "metro_cell" 501 | }, 502 | "id": "1", 503 | "type": "category", 504 | "ns": "video" 505 | }, 506 | { 507 | "target": { 508 | "type": "item_list" 509 | }, 510 | "images": { 511 | "back": { 512 | "url": "http://file.market.xiaomi.com/download/Duokan/aa16cf97-7c89-4e5b-89ef-243b4ba4b25b/dk204_1677721600_601_20140818162528_1.jpg", 513 | "ani": { }, 514 | "pos": { } 515 | } 516 | }, 517 | "name": "小米盒子", 518 | "times": { 519 | "updated": 0, 520 | "created": 0 521 | }, 522 | "_ui": { 523 | "layout": { 524 | "y": 2, 525 | "x": 8, 526 | "w": 2, 527 | "h": 1 528 | }, 529 | "type": "metro_cell" 530 | }, 531 | "id": "17", 532 | "type": "category", 533 | "ns": "video" 534 | }, 535 | { 536 | "target": { 537 | "type": "item_list" 538 | }, 539 | "images": { 540 | "back": { 541 | "url": "http://file.market.xiaomi.com/download/Duokan/88d42f07-b2e5-4b2b-8dda-95d0324c00cb/34a8331b9d7bac23bc3cc1a77fa70351.jpg", 542 | "ani": { }, 543 | "pos": { } 544 | } 545 | }, 546 | "name": "有线电视", 547 | "times": { 548 | "updated": 0, 549 | "created": 0 550 | }, 551 | "_ui": { 552 | "layout": { 553 | "y": 1, 554 | "x": 9, 555 | "w": 1, 556 | "h": 2 557 | }, 558 | "type": "metro_cell" 559 | }, 560 | "id": "18", 561 | "type": "category", 562 | "ns": "video" 563 | }, 564 | { 565 | "target": { 566 | "type": "item_list" 567 | }, 568 | "images": { 569 | "back": { 570 | "url": "http://file.market.xiaomi.com/download/d1d/2a76e5182d674608f9877b44dd9d103af286b49b/dk952868_20130415111126_b1080.jpg", 571 | "ani": { }, 572 | "pos": { } 573 | } 574 | }, 575 | "name": "智能家居", 576 | "times": { 577 | "updated": 0, 578 | "created": 0 579 | }, 580 | "_ui": { 581 | "layout": { 582 | "y": 1, 583 | "x": 10, 584 | "w": 1, 585 | "h": 2 586 | }, 587 | "type": "metro_cell" 588 | }, 589 | "id": "19", 590 | "type": "category", 591 | "ns": "video" 592 | } 593 | ], 594 | "images": { }, 595 | "name": "分类", 596 | "times": { 597 | "updated": 0, 598 | "created": 0 599 | }, 600 | "_ui": { 601 | "type": "metro" 602 | }, 603 | "id": "categories", 604 | "type": "album", 605 | "ns": "mitvfaq" 606 | } 607 | ], 608 | "update_time": 12, 609 | "base_url":"http://tv.mitvos.com/v2/" 610 | } 611 | -------------------------------------------------------------------------------- /tv/game/home_faq_en.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "data": [ 4 | { 5 | "items": [ 6 | { 7 | "target": { 8 | "type": "item" 9 | }, 10 | "images": { 11 | "back": { 12 | "url": "http://imgsrc.baidu.com/baike/pic/item/b17eca8065380cd7ed807c78a344ad345882818d.jpg", 13 | "ani": { }, 14 | "pos": { } 15 | } 16 | }, 17 | "name": "LeiJun show how to setup route", 18 | "times": { 19 | "updated": 1409161567, 20 | "created": 1401424855 21 | }, 22 | "_ui": { 23 | "layout": { 24 | "y": 1, 25 | "x": 1, 26 | "w": 1, 27 | "h": 2 28 | }, 29 | "type": "metro_cell_title" 30 | }, 31 | "id": "983197", 32 | "type": "item", 33 | "ns": "video" 34 | }, 35 | { 36 | "target": { 37 | "type": "album" 38 | }, 39 | "images": { 40 | "back": { 41 | "url": "http://news.k618.cn/xda/201405/W020140515787433027835.jpg", 42 | "ani": { }, 43 | "pos": { } 44 | } 45 | }, 46 | "name": "Play Xiaomi Soundbar", 47 | "times": { 48 | "updated": 1409162544, 49 | "created": 1407982497 50 | }, 51 | "_ui": { 52 | "layout": { 53 | "y": 1, 54 | "x": 2, 55 | "w": 2, 56 | "h": 1 57 | }, 58 | "type": "metro_cell_title" 59 | }, 60 | "id": "987347", 61 | "type": "item", 62 | "ns": "video" 63 | }, 64 | { 65 | "target": { 66 | "type": "item" 67 | }, 68 | "images": { 69 | "back": { 70 | "url": "http://img2.paipaiimg.com//81046f93/item-0097B2FD-8A53C11100000000000A3B520822191A.0.300x300.jpg", 71 | "ani": { }, 72 | "pos": { } 73 | } 74 | }, 75 | "name": "Car Sound Device", 76 | "times": { 77 | "updated": 1406950917, 78 | "created": 1398690242 79 | }, 80 | "_ui": { 81 | "layout": { 82 | "y": 1, 83 | "x": 5, 84 | "w": 1, 85 | "h": 1 86 | }, 87 | "type": "metro_cell_title" 88 | }, 89 | "id": "982125", 90 | "type": "item", 91 | "ns": "video" 92 | }, 93 | { 94 | "target": { 95 | "type": "item" 96 | }, 97 | "images": { 98 | "back": { 99 | "url": "http://image.box.xiaomi.com/mfsv2/download/s010/p01shnaa7gKl/98UnssjDNwXMAZ.png", 100 | "ani": { }, 101 | "pos": { } 102 | } 103 | }, 104 | "_ui": { 105 | "layout": { 106 | "y": 2, 107 | "x": 3, 108 | "w": 1, 109 | "h": 1 110 | }, 111 | "type": "metro_cell_title" 112 | }, 113 | "name": "Recommend App", 114 | "times": { 115 | "updated": 1387526511, 116 | "created": 1376617877 117 | }, 118 | "id": "109", 119 | "type": "item", 120 | "ns": "game" 121 | }, 122 | { 123 | "target": { 124 | "type": "album" 125 | }, 126 | "images": { 127 | "back": { 128 | "url": "http://jssq.vnet.cn/Upload/Catch/img4.cache.netease.com/ent/2010/4/3/2010040309421613ef0.jpg", 129 | "ani": { }, 130 | "pos": { } 131 | } 132 | }, 133 | "name": "Watch Holleywood", 134 | "times": { 135 | "updated": 1406946528, 136 | "created": 1397787776 137 | }, 138 | "_ui": { 139 | "layout": { 140 | "y": 2, 141 | "x": 4, 142 | "w": 2, 143 | "h": 1 144 | }, 145 | "type": "metro_cell_title" 146 | }, 147 | "id": "695", 148 | "type": "item", 149 | "ns": "video" 150 | }, 151 | { 152 | "target": { 153 | "type": "item" 154 | }, 155 | "images": { 156 | "back": { 157 | "url": "http://www.pingjiata.com/uploadfiles/20130905/1378386790.jpg", 158 | "ani": { }, 159 | "pos": { } 160 | } 161 | }, 162 | "name": "Xiaomi Product publish", 163 | "times": { 164 | "updated": 1409167788, 165 | "created": 1349856799 166 | }, 167 | "_ui": { 168 | "layout": { 169 | "y": 2, 170 | "x": 2, 171 | "w": 1, 172 | "h": 1 173 | }, 174 | "type": "metro_cell_title" 175 | }, 176 | "id": "696", 177 | "type": "item", 178 | "ns": "video" 179 | }, 180 | { 181 | "target": { 182 | "type": "item" 183 | }, 184 | "images": { 185 | "back": { 186 | "url": "http://h.hiphotos.bdimg.com/album/w%3D2048/sign=6d634438d6ca7bcb7d7bc02f8a316a63/9213b07eca80653813bad9e896dda144ac3482fc.jpg", 187 | "ani": { }, 188 | "pos": { } 189 | } 190 | }, 191 | "name": "HongKong", 192 | "times": { 193 | "updated": 1406947938, 194 | "created": 1349853434 195 | }, 196 | "_ui": { 197 | "layout": { 198 | "y": 1, 199 | "x": 4, 200 | "w": 1, 201 | "h": 1 202 | }, 203 | "type": "metro_cell_title" 204 | }, 205 | "id": "719", 206 | "type": "item", 207 | "ns": "video" 208 | }, 209 | { 210 | "target": { 211 | "type": "item" 212 | }, 213 | "images": { 214 | "back": { 215 | "url": "http://imgsrc.baidu.com/forum/w%3D580/sign=155b9433b64543a9f51bfac42e168a7b/c8da044e251f95ca778ad871c8177f3e650952ce.jpg", 216 | "ani": { }, 217 | "pos": { } 218 | } 219 | }, 220 | "name": "Brothers", 221 | "times": { 222 | "updated": 1406944370, 223 | "created": 1350477877 224 | }, 225 | "_ui": { 226 | "layout": { 227 | "y": 1, 228 | "x": 6, 229 | "w": 1, 230 | "h": 1 231 | }, 232 | "type": "metro_cell_title" 233 | }, 234 | "id": "755", 235 | "type": "item", 236 | "ns": "video" 237 | }, 238 | { 239 | "target": { 240 | "type": "item" 241 | }, 242 | "images": { 243 | "back": { 244 | "url": "http://www.fwtd.cn/uploads/allimg/130204/1-1302042151125K.jpg", 245 | "ani": { }, 246 | "pos": { } 247 | } 248 | }, 249 | "name": "Xiaomi Box", 250 | "times": { 251 | "updated": 1406944296, 252 | "created": 1350477837 253 | }, 254 | "_ui": { 255 | "layout": { 256 | "y": 2, 257 | "x": 6, 258 | "w": 1, 259 | "h": 1 260 | }, 261 | "type": "metro_cell_title" 262 | }, 263 | "id": "879", 264 | "type": "item", 265 | "ns": "video" 266 | } 267 | ], 268 | "images": { }, 269 | "name": "Mi-Fans", 270 | "times": { 271 | "updated": 0, 272 | "created": 0 273 | }, 274 | "_ui": { 275 | "type": "metro" 276 | }, 277 | "id": "recommend", 278 | "type": "album", 279 | "ns": "mitvfaq" 280 | }, 281 | { 282 | "items": [ 283 | { 284 | "target": { 285 | "type": "item_list" 286 | }, 287 | "images": { 288 | "back": { 289 | "url": "http://file.market.xiaomi.com/download/Duokan/ac400950-303a-4e31-8615-8aa98e344366/dk204_2139095050_601_20140828154303_1.jpg", 290 | "ani": { }, 291 | "pos": { } 292 | } 293 | }, 294 | "name": "Online Video", 295 | "times": { 296 | "updated": 0, 297 | "created": 0 298 | }, 299 | "_ui": { 300 | "layout": { 301 | "y": 1, 302 | "x": 1, 303 | "w": 1, 304 | "h": 2 305 | }, 306 | "type": "metro_cell" 307 | }, 308 | "id": "5", 309 | "type": "category", 310 | "ns": "video" 311 | }, 312 | { 313 | "target": { 314 | "type": "item_list" 315 | }, 316 | "images": { 317 | "back": { 318 | "url": "http://file.market.xiaomi.com/download/Duokan/d1431eff-d20b-48da-a62a-4a51e0c699b0/dk204_33554432_601_20140825164044_1.jpg", 319 | "ani": { }, 320 | "pos": { } 321 | } 322 | }, 323 | "name": "SoundBar", 324 | "times": { 325 | "updated": 0, 326 | "created": 0 327 | }, 328 | "_ui": { 329 | "layout": { 330 | "y": 1, 331 | "x": 2, 332 | "w": 2, 333 | "h": 1 334 | }, 335 | "type": "metro_cell" 336 | }, 337 | "id": "2", 338 | "type": "category", 339 | "ns": "video" 340 | }, 341 | { 342 | "target": { 343 | "type": "item_list" 344 | }, 345 | "images": { 346 | "back": { 347 | "url": "http://file.market.xiaomi.com/download/b95/56d5ce9085f6922d566159eeb99166a7e9504c84/content_sort_education_bg_1080.png", 348 | "ani": { }, 349 | "pos": {"x":0, "y":345} 350 | }, 351 | "icon": { 352 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 353 | "ani": { }, 354 | "pos": { } 355 | } 356 | }, 357 | "name": "Blootooth RC", 358 | "times": { 359 | "updated": 0, 360 | "created": 0 361 | }, 362 | "_ui": { 363 | "layout": { 364 | "y": 2, 365 | "x": 3, 366 | "w": 1, 367 | "h": 1 368 | }, 369 | "type": "metro_cell" 370 | }, 371 | "id": "4", 372 | "type": "category", 373 | "ns": "video" 374 | }, 375 | { 376 | "target": { 377 | "type": "item_list" 378 | }, 379 | "images": { 380 | "back": { 381 | "url": "http://file.market.xiaomi.com/download/d07/6ebab501f7352d47d9d51042d87aa16f40df5197/content_sort_variety_bg.png", 382 | "ani": { }, 383 | "pos": {"x":0, "y":345} 384 | }, 385 | "icon": { 386 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 387 | "ani": { }, 388 | "pos": { } 389 | } 390 | }, 391 | "name": "Payment", 392 | "times": { 393 | "updated": 0, 394 | "created": 0 395 | }, 396 | "_ui": { 397 | "layout": { 398 | "y": 2, 399 | "x": 4, 400 | "w": 1, 401 | "h": 1 402 | }, 403 | "type": "metro_cell" 404 | }, 405 | "id": "7", 406 | "type": "category", 407 | "ns": "video" 408 | }, 409 | { 410 | "target": { 411 | "type": "item_list" 412 | }, 413 | "images": { 414 | "back": { 415 | "url": "http://file.market.xiaomi.com/download/Duokan/f2a67e48-37aa-4f48-a749-4140045fef12/dk204_50331648_601_20140818162509_1.jpg", 416 | "ani": { }, 417 | "pos": { } 418 | } 419 | }, 420 | "name": "Mobile Assist", 421 | "times": { 422 | "updated": 0, 423 | "created": 0 424 | }, 425 | "_ui": { 426 | "layout": { 427 | "y": 1, 428 | "x": 5, 429 | "w": 1, 430 | "h": 2 431 | }, 432 | "type": "metro_cell" 433 | }, 434 | "id": "3", 435 | "type": "category", 436 | "ns": "video" 437 | }, 438 | { 439 | "target": { 440 | "type": "item_list" 441 | }, 442 | "images": { 443 | "back": { 444 | "url": "http://file.market.xiaomi.com/download/541/c281cf4dc153518ebbfc1de15ea59aaff09fa6bc/content_sort_music_bg.png", 445 | "ani": { }, 446 | "pos": { } 447 | }, 448 | "icon": { 449 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 450 | "ani": { }, 451 | "pos": { } 452 | } 453 | }, 454 | "name": "Software Install", 455 | "times": { 456 | "updated": 0, 457 | "created": 0 458 | }, 459 | "_ui": { 460 | "layout": { 461 | "y": 1, 462 | "x": 6, 463 | "w": 1, 464 | "h": 1 465 | }, 466 | "type": "metro_cell" 467 | }, 468 | "id": "8", 469 | "type": "category", 470 | "ns": "video" 471 | }, 472 | { 473 | "target": { 474 | "type": "item_list" 475 | }, 476 | "images": { 477 | "back": { 478 | "url": "http://file.market.xiaomi.com/download/b95/56d5ce9085f6922d566159eeb99166a7e9504c84/content_sort_education_bg_1080.png", 479 | "ani": { }, 480 | "pos": { } 481 | }, 482 | "icon": { 483 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 484 | "ani": { }, 485 | "pos": { } 486 | } 487 | }, 488 | "name": "Game Handler", 489 | "times": { 490 | "updated": 0, 491 | "created": 0 492 | }, 493 | "_ui": { 494 | "layout": { 495 | "y": 1, 496 | "x": 7, 497 | "w": 1, 498 | "h": 1 499 | }, 500 | "type": "metro_cell" 501 | }, 502 | "id": "1", 503 | "type": "category", 504 | "ns": "video" 505 | }, 506 | { 507 | "target": { 508 | "type": "item_list" 509 | }, 510 | "images": { 511 | "back": { 512 | "url": "http://file.market.xiaomi.com/download/Duokan/aa16cf97-7c89-4e5b-89ef-243b4ba4b25b/dk204_1677721600_601_20140818162528_1.jpg", 513 | "ani": { }, 514 | "pos": { } 515 | } 516 | }, 517 | "name": "Mi Box", 518 | "times": { 519 | "updated": 0, 520 | "created": 0 521 | }, 522 | "_ui": { 523 | "layout": { 524 | "y": 2, 525 | "x": 8, 526 | "w": 2, 527 | "h": 1 528 | }, 529 | "type": "metro_cell" 530 | }, 531 | "id": "17", 532 | "type": "category", 533 | "ns": "video" 534 | }, 535 | { 536 | "target": { 537 | "type": "item_list" 538 | }, 539 | "images": { 540 | "back": { 541 | "url": "http://file.market.xiaomi.com/download/Duokan/88d42f07-b2e5-4b2b-8dda-95d0324c00cb/34a8331b9d7bac23bc3cc1a77fa70351.jpg", 542 | "ani": { }, 543 | "pos": { } 544 | } 545 | }, 546 | "name": "TV", 547 | "times": { 548 | "updated": 0, 549 | "created": 0 550 | }, 551 | "_ui": { 552 | "layout": { 553 | "y": 1, 554 | "x": 9, 555 | "w": 1, 556 | "h": 2 557 | }, 558 | "type": "metro_cell" 559 | }, 560 | "id": "18", 561 | "type": "category", 562 | "ns": "video" 563 | }, 564 | { 565 | "target": { 566 | "type": "item_list" 567 | }, 568 | "images": { 569 | "back": { 570 | "url": "http://file.market.xiaomi.com/download/d1d/2a76e5182d674608f9877b44dd9d103af286b49b/dk952868_20130415111126_b1080.jpg", 571 | "ani": { }, 572 | "pos": { } 573 | } 574 | }, 575 | "name": "Smart House", 576 | "times": { 577 | "updated": 0, 578 | "created": 0 579 | }, 580 | "_ui": { 581 | "layout": { 582 | "y": 1, 583 | "x": 10, 584 | "w": 1, 585 | "h": 2 586 | }, 587 | "type": "metro_cell" 588 | }, 589 | "id": "19", 590 | "type": "category", 591 | "ns": "video" 592 | } 593 | ], 594 | "images": { }, 595 | "name": "Category", 596 | "times": { 597 | "updated": 0, 598 | "created": 0 599 | }, 600 | "_ui": { 601 | "type": "metro" 602 | }, 603 | "id": "categories", 604 | "type": "album", 605 | "ns": "mitvfaq" 606 | } 607 | ], 608 | "update_time": 0, 609 | "base_url":"http://tv.mitvos.com/v2/" 610 | } 611 | -------------------------------------------------------------------------------- /tv/game/home_faq_mobile.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "data": [ 4 | { 5 | "items": [ 6 | { 7 | "target": { 8 | "type": "item" 9 | }, 10 | "images": { 11 | "back": { 12 | "url": "http://image.box.xiaomi.com/mfsv2/download/s010/p01plTuGi9Rp/U6bRNkCpwcXY6N.jpg", 13 | "ani": { }, 14 | "pos": { } 15 | } 16 | }, 17 | "name": "教你玩转F4,100万人观看", 18 | "times": { 19 | "updated": 1409161567, 20 | "created": 1401424855 21 | }, 22 | "_ui": { 23 | "layout": { 24 | "y": 1, 25 | "x": 1, 26 | "w": 1, 27 | "h": 2 28 | }, 29 | "type": "metro_cell_title" 30 | }, 31 | "id": "983197", 32 | "type": "item", 33 | "ns": "video" 34 | }, 35 | { 36 | "target": { 37 | "type": "album" 38 | }, 39 | "images": { 40 | "back": { 41 | "url": "http://image.box.xiaomi.com/mfsv2/download/s010/p017GWy2GK5S/g10GeGQ0FHZCaA.jpg", 42 | "ani": { }, 43 | "pos": { } 44 | }, 45 | "icon": { 46 | "url": "http://image.box.xiaomi.com/mfsv2/download/s010/p01j50W8yRC2/Q8CeNiNLFBu6Ew.png", 47 | "ani": { }, 48 | "pos": {"x":0, "y":345 } 49 | }, 50 | "spirit": { 51 | "url": "http://image.box.xiaomi.com/mfsv2/download/s010/p01c6uFJsH6W/7vqVrAGtdJEDsZ.png", 52 | "ani": { 53 | "translate": { 54 | "duration": 500, 55 | "y_delta": 0, 56 | "startDelay": 0, 57 | "interpolator": 0, 58 | "x_delta": 10 59 | } 60 | }, 61 | "pos": { 62 | "y": 0, 63 | "x": 0 64 | } 65 | } 66 | }, 67 | "name": "手机玩转小米家庭音响,100万正在用", 68 | "times": { 69 | "updated": 1409162544, 70 | "created": 1407982497 71 | }, 72 | "_ui": { 73 | "layout": { 74 | "y": 1, 75 | "x": 2, 76 | "w": 2, 77 | "h": 1 78 | }, 79 | "type": "metro_cell_title" 80 | }, 81 | "id": "987347", 82 | "type": "item", 83 | "ns": "video" 84 | }, 85 | { 86 | "target": { 87 | "type": "item" 88 | }, 89 | "images": { 90 | "back": { 91 | "url": "http://file.market.xiaomi.com/download/50a/f9588e02aab48529f309500a578a65695dc81763/dk696_20120921112501_s1080.jpg", 92 | "ani": { }, 93 | "pos": { } 94 | } 95 | }, 96 | "name": "巴黎宝贝", 97 | "times": { 98 | "updated": 1409167788, 99 | "created": 1349856799 100 | }, 101 | "_ui": { 102 | "layout": { 103 | "y": 2, 104 | "x": 2, 105 | "w": 1, 106 | "h": 1 107 | }, 108 | "type": "metro_cell_title" 109 | }, 110 | "id": "696", 111 | "type": "item", 112 | "ns": "video" 113 | }, 114 | { 115 | "target": { 116 | "type": "item" 117 | }, 118 | "images": { 119 | "back": { 120 | "url": "http://image.box.xiaomi.com/mfsv2/download/s010/p01shnaa7gKl/98UnssjDNwXMAZ.png", 121 | "ani": { }, 122 | "pos": { } 123 | } 124 | }, 125 | "_ui": { 126 | "layout": { 127 | "y": 2, 128 | "x": 3, 129 | "w": 1, 130 | "h": 1 131 | }, 132 | "type": "metro_cell_title" 133 | }, 134 | "name": "推荐位应用", 135 | "times": { 136 | "updated": 1387526511, 137 | "created": 1376617877 138 | }, 139 | "id": "109", 140 | "type": "item", 141 | "ns": "game" 142 | }, 143 | { 144 | "target": { 145 | "type": "item" 146 | }, 147 | "images": { 148 | "back": { 149 | "url": "http://file.market.xiaomi.com/download/Duokan/ad597e3e-b4b8-4ec3-bed0-95d143ddb005/dk982125_20140430180408_b720.jpg", 150 | "ani": { }, 151 | "pos": { } 152 | } 153 | }, 154 | "name": "改装汽车音响", 155 | "times": { 156 | "updated": 1406950917, 157 | "created": 1398690242 158 | }, 159 | "_ui": { 160 | "layout": { 161 | "y": 3, 162 | "x": 1, 163 | "w": 1, 164 | "h": 1 165 | }, 166 | "type": "metro_cell_title" 167 | }, 168 | "id": "982125", 169 | "type": "item", 170 | "ns": "video" 171 | }, 172 | 173 | { 174 | "target": { 175 | "type": "album" 176 | }, 177 | "images": { 178 | "back": { 179 | "url": "http://image.box.xiaomi.com/mfsv2/download/s010/p01yPwXDncs1/KUjiUzoiqpwR4e.jpg", 180 | "ani": { }, 181 | "pos": { } 182 | } 183 | }, 184 | "name": "一网打尽好莱坞", 185 | "times": { 186 | "updated": 1406946528, 187 | "created": 1397787776 188 | }, 189 | "_ui": { 190 | "layout": { 191 | "y": 4, 192 | "x": 1, 193 | "w": 2, 194 | "h": 1 195 | }, 196 | "type": "metro_cell_title" 197 | }, 198 | "id": "695", 199 | "type": "item", 200 | "ns": "video" 201 | }, 202 | 203 | { 204 | "target": { 205 | "type": "item" 206 | }, 207 | "images": { 208 | "back": { 209 | "url": "http://file.market.xiaomi.com/download/e5d/6f374b521db9e846c78acbd7ebebc56066bc446d/dk719_20120910004618_s1080.jpg", 210 | "ani": { }, 211 | "pos": { } 212 | } 213 | }, 214 | "name": "战龙四驱", 215 | "times": { 216 | "updated": 1406947938, 217 | "created": 1349853434 218 | }, 219 | "_ui": { 220 | "layout": { 221 | "y": 3, 222 | "x": 2, 223 | "w": 1, 224 | "h": 1 225 | }, 226 | "type": "metro_cell_title" 227 | }, 228 | "id": "719", 229 | "type": "item", 230 | "ns": "video" 231 | }, 232 | { 233 | "target": { 234 | "type": "item" 235 | }, 236 | "images": { 237 | "back": { 238 | "url": "http://file.market.xiaomi.com/download/9c4/1319d4c75458b8c080cd7d14908175f9c8b752cf/dk755_20120909234637_s1080.jpg", 239 | "ani": { }, 240 | "pos": { } 241 | } 242 | }, 243 | "name": "你是我兄弟", 244 | "times": { 245 | "updated": 1406944370, 246 | "created": 1350477877 247 | }, 248 | "_ui": { 249 | "layout": { 250 | "y": 3, 251 | "x": 3, 252 | "w": 1, 253 | "h": 1 254 | }, 255 | "type": "metro_cell_title" 256 | }, 257 | "id": "755", 258 | "type": "item", 259 | "ns": "video" 260 | }, 261 | { 262 | "target": { 263 | "type": "item" 264 | }, 265 | "images": { 266 | "back": { 267 | "url": "http://file.market.xiaomi.com/download/522/d860e32e625e6e0e3faf1d1c5d72861bc78bd483/dk879_20130201202232_b720.jpg", 268 | "ani": { }, 269 | "pos": { } 270 | } 271 | }, 272 | "name": "锄奸", 273 | "times": { 274 | "updated": 1406944296, 275 | "created": 1350477837 276 | }, 277 | "_ui": { 278 | "layout": { 279 | "y": 4, 280 | "x": 3, 281 | "w": 1, 282 | "h": 1 283 | }, 284 | "type": "metro_cell_title" 285 | }, 286 | "id": "879", 287 | "type": "item", 288 | "ns": "video" 289 | } 290 | ], 291 | "images": { }, 292 | "name": "米粉之家", 293 | "times": { 294 | "updated": 0, 295 | "created": 0 296 | }, 297 | "_ui": { 298 | "type": "metro" 299 | }, 300 | "id": "recommend", 301 | "type": "album", 302 | "ns": "mitvfaq" 303 | }, 304 | { 305 | "items": [ 306 | { 307 | "target": { 308 | "type": "item_list" 309 | }, 310 | "images": { 311 | "back": { 312 | "url": "http://file.market.xiaomi.com/download/Duokan/ac400950-303a-4e31-8615-8aa98e344366/dk204_2139095050_601_20140828154303_1.jpg", 313 | "ani": { }, 314 | "pos": { } 315 | } 316 | }, 317 | "name": "在线视频", 318 | "times": { 319 | "updated": 0, 320 | "created": 0 321 | }, 322 | "_ui": { 323 | "layout": { 324 | "y": 1, 325 | "x": 1, 326 | "w": 1, 327 | "h": 2 328 | }, 329 | "type": "metro_cell" 330 | }, 331 | "id": "5", 332 | "type": "category", 333 | "ns": "video" 334 | }, 335 | { 336 | "target": { 337 | "type": "item_list" 338 | }, 339 | "images": { 340 | "back": { 341 | "url": "http://file.market.xiaomi.com/download/Duokan/d1431eff-d20b-48da-a62a-4a51e0c699b0/dk204_33554432_601_20140825164044_1.jpg", 342 | "ani": { }, 343 | "pos": { } 344 | } 345 | }, 346 | "name": "小米家庭音响", 347 | "times": { 348 | "updated": 0, 349 | "created": 0 350 | }, 351 | "_ui": { 352 | "layout": { 353 | "y": 1, 354 | "x": 2, 355 | "w": 2, 356 | "h": 1 357 | }, 358 | "type": "metro_cell" 359 | }, 360 | "id": "2", 361 | "type": "category", 362 | "ns": "video" 363 | }, 364 | { 365 | "target": { 366 | "type": "item_list" 367 | }, 368 | "images": { 369 | "back": { 370 | "url": "http://file.market.xiaomi.com/download/b95/56d5ce9085f6922d566159eeb99166a7e9504c84/content_sort_education_bg_1080.png", 371 | "ani": { }, 372 | "pos": {"x":0, "y":345} 373 | }, 374 | "icon": { 375 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 376 | "ani": { }, 377 | "pos": { } 378 | } 379 | }, 380 | "name": "蓝牙遥控器", 381 | "times": { 382 | "updated": 0, 383 | "created": 0 384 | }, 385 | "_ui": { 386 | "layout": { 387 | "y": 2, 388 | "x": 2, 389 | "w": 1, 390 | "h": 1 391 | }, 392 | "type": "metro_cell" 393 | }, 394 | "id": "4", 395 | "type": "category", 396 | "ns": "video" 397 | }, 398 | { 399 | "target": { 400 | "type": "item_list" 401 | }, 402 | "images": { 403 | "back": { 404 | "url": "http://file.market.xiaomi.com/download/d07/6ebab501f7352d47d9d51042d87aa16f40df5197/content_sort_variety_bg.png", 405 | "ani": { }, 406 | "pos": {"x":0, "y":345} 407 | }, 408 | "icon": { 409 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 410 | "ani": { }, 411 | "pos": { } 412 | } 413 | }, 414 | "name": "支付", 415 | "times": { 416 | "updated": 0, 417 | "created": 0 418 | }, 419 | "_ui": { 420 | "layout": { 421 | "y": 2, 422 | "x": 3, 423 | "w": 1, 424 | "h": 1 425 | }, 426 | "type": "metro_cell" 427 | }, 428 | "id": "7", 429 | "type": "category", 430 | "ns": "video" 431 | }, 432 | { 433 | "target": { 434 | "type": "item_list" 435 | }, 436 | "images": { 437 | "back": { 438 | "url": "http://file.market.xiaomi.com/download/Duokan/f2a67e48-37aa-4f48-a749-4140045fef12/dk204_50331648_601_20140818162509_1.jpg", 439 | "ani": { }, 440 | "pos": { } 441 | } 442 | }, 443 | "name": "手机助手", 444 | "times": { 445 | "updated": 0, 446 | "created": 0 447 | }, 448 | "_ui": { 449 | "layout": { 450 | "y": 3, 451 | "x": 1, 452 | "w": 1, 453 | "h": 2 454 | }, 455 | "type": "metro_cell" 456 | }, 457 | "id": "3", 458 | "type": "category", 459 | "ns": "video" 460 | }, 461 | { 462 | "target": { 463 | "type": "item_list" 464 | }, 465 | "images": { 466 | "back": { 467 | "url": "http://file.market.xiaomi.com/download/541/c281cf4dc153518ebbfc1de15ea59aaff09fa6bc/content_sort_music_bg.png", 468 | "ani": { }, 469 | "pos": { } 470 | }, 471 | "icon": { 472 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 473 | "ani": { }, 474 | "pos": { } 475 | } 476 | }, 477 | "name": "软件安装", 478 | "times": { 479 | "updated": 0, 480 | "created": 0 481 | }, 482 | "_ui": { 483 | "layout": { 484 | "y": 3, 485 | "x": 2, 486 | "w": 1, 487 | "h": 1 488 | }, 489 | "type": "metro_cell" 490 | }, 491 | "id": "8", 492 | "type": "category", 493 | "ns": "video" 494 | }, 495 | { 496 | "target": { 497 | "type": "item_list" 498 | }, 499 | "images": { 500 | "back": { 501 | "url": "http://file.market.xiaomi.com/download/b95/56d5ce9085f6922d566159eeb99166a7e9504c84/content_sort_education_bg_1080.png", 502 | "ani": { }, 503 | "pos": { } 504 | }, 505 | "icon": { 506 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 507 | "ani": { }, 508 | "pos": { } 509 | } 510 | }, 511 | "name": "游戏手柄", 512 | "times": { 513 | "updated": 0, 514 | "created": 0 515 | }, 516 | "_ui": { 517 | "layout": { 518 | "y": 3, 519 | "x": 3, 520 | "w": 1, 521 | "h": 1 522 | }, 523 | "type": "metro_cell" 524 | }, 525 | "id": "1", 526 | "type": "category", 527 | "ns": "video" 528 | }, 529 | { 530 | "target": { 531 | "type": "item_list" 532 | }, 533 | "images": { 534 | "back": { 535 | "url": "http://file.market.xiaomi.com/download/Duokan/aa16cf97-7c89-4e5b-89ef-243b4ba4b25b/dk204_1677721600_601_20140818162528_1.jpg", 536 | "ani": { }, 537 | "pos": { } 538 | } 539 | }, 540 | "name": "小米盒子", 541 | "times": { 542 | "updated": 0, 543 | "created": 0 544 | }, 545 | "_ui": { 546 | "layout": { 547 | "y": 4, 548 | "x": 2, 549 | "w": 2, 550 | "h": 1 551 | }, 552 | "type": "metro_cell" 553 | }, 554 | "id": "17", 555 | "type": "category", 556 | "ns": "video" 557 | }, 558 | { 559 | "target": { 560 | "type": "item_list" 561 | }, 562 | "images": { 563 | "back": { 564 | "url": "http://file.market.xiaomi.com/download/Duokan/88d42f07-b2e5-4b2b-8dda-95d0324c00cb/34a8331b9d7bac23bc3cc1a77fa70351.jpg", 565 | "ani": { }, 566 | "pos": { } 567 | } 568 | }, 569 | "name": "有线电视", 570 | "times": { 571 | "updated": 0, 572 | "created": 0 573 | }, 574 | "_ui": { 575 | "layout": { 576 | "y": 5, 577 | "x": 1, 578 | "w": 1, 579 | "h": 2 580 | }, 581 | "type": "metro_cell" 582 | }, 583 | "id": "18", 584 | "type": "category", 585 | "ns": "video" 586 | }, 587 | { 588 | "target": { 589 | "type": "item_list" 590 | }, 591 | "images": { 592 | "back": { 593 | "url": "http://file.market.xiaomi.com/download/d1d/2a76e5182d674608f9877b44dd9d103af286b49b/dk952868_20130415111126_b1080.jpg", 594 | "ani": { }, 595 | "pos": { } 596 | } 597 | }, 598 | "name": "智能家居", 599 | "times": { 600 | "updated": 0, 601 | "created": 0 602 | }, 603 | "_ui": { 604 | "layout": { 605 | "y": 5, 606 | "x": 2, 607 | "w": 1, 608 | "h": 2 609 | }, 610 | "type": "metro_cell" 611 | }, 612 | "id": "19", 613 | "type": "category", 614 | "ns": "video" 615 | } 616 | ], 617 | "images": { }, 618 | "name": "分类", 619 | "times": { 620 | "updated": 0, 621 | "created": 0 622 | }, 623 | "_ui": { 624 | "type": "metro" 625 | }, 626 | "id": "categories", 627 | "type": "album", 628 | "ns": "mitvfaq" 629 | } 630 | ], 631 | "update_time": 1, 632 | "base_url":"http://tv.mitvos.com/v2/" 633 | } 634 | -------------------------------------------------------------------------------- /tv/game/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/main.png -------------------------------------------------------------------------------- /tv/game/mobile/category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/mobile/category.png -------------------------------------------------------------------------------- /tv/game/mobile/new_cn/apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/mobile/new_cn/apps.png -------------------------------------------------------------------------------- /tv/game/mobile/new_cn/category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/mobile/new_cn/category.png -------------------------------------------------------------------------------- /tv/game/mobile/new_cn/detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/mobile/new_cn/detail.png -------------------------------------------------------------------------------- /tv/game/mobile/new_cn/main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/mobile/new_cn/main.png -------------------------------------------------------------------------------- /tv/game/mobile/new_cn/movie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/mobile/new_cn/movie.png -------------------------------------------------------------------------------- /tv/game/mobile/new_cn/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/mobile/new_cn/star.png -------------------------------------------------------------------------------- /tv/game/mobile/new_cn/star_search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/mobile/new_cn/star_search.png -------------------------------------------------------------------------------- /tv/game/mobile/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/mobile/search.png -------------------------------------------------------------------------------- /tv/game/mobile/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/mobile/video.png -------------------------------------------------------------------------------- /tv/game/mobile/video_album.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/mobile/video_album.png -------------------------------------------------------------------------------- /tv/game/mobile/video_detail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/mobile/video_detail.png -------------------------------------------------------------------------------- /tv/game/mobile_port.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | "data": [ 4 | { 5 | "items": [ 6 | { 7 | "target": { 8 | "type": "item" 9 | }, 10 | "images": { 11 | "back": { 12 | "url": "http://img1.mtime.cn/pi/d/2008/15/20084621041.75704028.jpg", 13 | "ani": { }, 14 | "pos": { } 15 | } 16 | }, 17 | "name": "死亡契约", 18 | "times": { 19 | "updated": 1409161567, 20 | "created": 1401424855 21 | }, 22 | "_ui": { 23 | "layout": { 24 | "y": 1, 25 | "x": 1, 26 | "w": 1, 27 | "h": 2 28 | }, 29 | "type": "metro_cell_title" 30 | }, 31 | "id": "508770", 32 | "type": "item", 33 | "ns": "video" 34 | }, 35 | { 36 | "target": { 37 | "type": "album" 38 | }, 39 | "images": { 40 | "back": { 41 | "url": "http://img0.imgtn.bdimg.com/it/u=3073636166,760636672&fm=23&gp=0.jpg", 42 | "ani": { }, 43 | "pos": { } 44 | } 45 | }, 46 | "name": "虎胆龙威4", 47 | "times": { 48 | "updated": 1409162544, 49 | "created": 1407982497 50 | }, 51 | "_ui": { 52 | "layout": { 53 | "y": 1, 54 | "x": 2, 55 | "w": 2, 56 | "h": 1 57 | }, 58 | "type": "metro_cell_title" 59 | }, 60 | "id": "740367", 61 | "type": "item", 62 | "ns": "video" 63 | }, 64 | { 65 | "target": { 66 | "type": "item" 67 | }, 68 | "images": { 69 | "back": { 70 | "url": "http://img1.imgtn.bdimg.com/it/u=2159876761,3055694242&fm=23&gp=0.jpg", 71 | "ani": { }, 72 | "pos": { } 73 | } 74 | }, 75 | "name": "玉观音", 76 | "times": { 77 | "updated": 1409167788, 78 | "created": 1349856799 79 | }, 80 | "_ui": { 81 | "layout": { 82 | "y": 2, 83 | "x": 2, 84 | "w": 1, 85 | "h": 1 86 | }, 87 | "type": "metro_cell_title" 88 | }, 89 | "id": "694250", 90 | "type": "item", 91 | "ns": "video" 92 | }, 93 | { 94 | "target": { 95 | "type": "item" 96 | }, 97 | "images": { 98 | "back": { 99 | "url": "http://image.box.xiaomi.com/mfsv2/download/s010/p01shnaa7gKl/98UnssjDNwXMAZ.png", 100 | "ani": { }, 101 | "pos": { } 102 | } 103 | }, 104 | "_ui": { 105 | "layout": { 106 | "y": 2, 107 | "x": 3, 108 | "w": 1, 109 | "h": 1 110 | }, 111 | "type": "metro_cell_title" 112 | }, 113 | "name": "推荐位应用", 114 | "times": { 115 | "updated": 1387526511, 116 | "created": 1376617877 117 | }, 118 | "id": "109", 119 | "type": "item", 120 | "ns": "game" 121 | }, 122 | { 123 | "target": { 124 | "type": "item" 125 | }, 126 | "images": { 127 | "back": { 128 | "url": "http://img1.imgtn.bdimg.com/it/u=2566298068,1079470293&fm=23&gp=0.jpg", 129 | "ani": { }, 130 | "pos": { } 131 | } 132 | }, 133 | "name": "一仆二主", 134 | "times": { 135 | "updated": 1406947938, 136 | "created": 1349853434 137 | }, 138 | "_ui": { 139 | "layout": { 140 | "y": 3, 141 | "x": 1, 142 | "w": 1, 143 | "h": 1 144 | }, 145 | "type": "metro_cell_title" 146 | }, 147 | "id": "976158", 148 | "type": "item", 149 | "ns": "video" 150 | }, 151 | { 152 | "target": { 153 | "type": "item" 154 | }, 155 | "images": { 156 | "back": { 157 | "url": "http://image.photoworld.com.cn/wp-content/uploads/2013/09/20120903050513666.jpg?imageView2/2/w/640", 158 | "ani": { }, 159 | "pos": { } 160 | } 161 | }, 162 | "name": "美国丽人", 163 | "times": { 164 | "updated": 1406950917, 165 | "created": 1398690242 166 | }, 167 | "_ui": { 168 | "layout": { 169 | "y": 3, 170 | "x": 2, 171 | "w": 1, 172 | "h": 1 173 | }, 174 | "type": "metro_cell_title" 175 | }, 176 | "id": "973671", 177 | "type": "item", 178 | "ns": "video" 179 | }, 180 | { 181 | "target": { 182 | "type": "item" 183 | }, 184 | "images": { 185 | "back": { 186 | "url": "http://img0.imgtn.bdimg.com/it/u=2775852015,2186553463&fm=23&gp=0.jpg", 187 | "ani": { }, 188 | "pos": { } 189 | } 190 | }, 191 | "name": "你是我兄弟", 192 | "times": { 193 | "updated": 1406944370, 194 | "created": 1350477877 195 | }, 196 | "_ui": { 197 | "layout": { 198 | "y": 3, 199 | "x": 3, 200 | "w": 1, 201 | "h": 1 202 | }, 203 | "type": "metro_cell_title" 204 | }, 205 | "id": "755", 206 | "type": "item", 207 | "ns": "video" 208 | }, 209 | { 210 | "target": { 211 | "type": "album" 212 | }, 213 | "images": { 214 | "back": { 215 | "url": "http://image.box.xiaomi.com/mfsv2/download/s010/p01yPwXDncs1/KUjiUzoiqpwR4e.jpg", 216 | "ani": { }, 217 | "pos": { } 218 | } 219 | }, 220 | "name": "边城三侠", 221 | "times": { 222 | "updated": 1406946528, 223 | "created": 1397787776 224 | }, 225 | "_ui": { 226 | "layout": { 227 | "y": 4, 228 | "x": 1, 229 | "w": 2, 230 | "h": 1 231 | }, 232 | "type": "metro_cell_title" 233 | }, 234 | "id": "695", 235 | "type": "item", 236 | "ns": "video" 237 | }, 238 | { 239 | "target": { 240 | "type": "item" 241 | }, 242 | "images": { 243 | "back": { 244 | "url": "http://t10.baidu.com/it/u=2893713588,2752992371&fm=59", 245 | "ani": { }, 246 | "pos": { } 247 | } 248 | }, 249 | "name": "亮剑", 250 | "times": { 251 | "updated": 1406944296, 252 | "created": 1350477837 253 | }, 254 | "_ui": { 255 | "layout": { 256 | "y": 4, 257 | "x": 3, 258 | "w": 1, 259 | "h": 1 260 | }, 261 | "type": "metro_cell_title" 262 | }, 263 | "id": "765772", 264 | "type": "item", 265 | "ns": "video" 266 | }, 267 | { 268 | "target": { 269 | "type": "item" 270 | }, 271 | "images": { 272 | "back": { 273 | "url": "http://img4.imgtn.bdimg.com/it/u=1481559337,2339393667&fm=23&gp=0.jpg", 274 | "ani": { }, 275 | "pos": { } 276 | } 277 | }, 278 | "name": "浩瀚宇宙", 279 | "times": { 280 | "updated": 1409158581, 281 | "created": 1397787155 282 | }, 283 | "_ui": { 284 | "layout": { 285 | "y": 5, 286 | "x": 1, 287 | "w": 1, 288 | "h": 1 289 | }, 290 | "type": "metro_cell_title" 291 | }, 292 | "id": "987144", 293 | "type": "item", 294 | "ns": "video" 295 | }, 296 | { 297 | "target": { 298 | "type": "item" 299 | }, 300 | "images": { 301 | "back": { 302 | "url": "http://img0.imgtn.bdimg.com/it/u=3690354230,1539139922&fm=23&gp=0.jpg", 303 | "ani": { }, 304 | "pos": { } 305 | } 306 | }, 307 | "name": "大秦帝国", 308 | "times": { 309 | "updated": 1409162210, 310 | "created": 1397787375 311 | }, 312 | "_ui": { 313 | "layout": { 314 | "y": 5, 315 | "x": 2, 316 | "w": 1, 317 | "h": 1 318 | }, 319 | "type": "metro_cell_title" 320 | }, 321 | "id": "93557", 322 | "type": "item", 323 | "ns": "video" 324 | }, 325 | { 326 | "target": { 327 | "type": "item" 328 | }, 329 | "images": { 330 | "back": { 331 | "url": "http://img1.imgtn.bdimg.com/it/u=437532649,653359818&fm=23&gp=0.jpg", 332 | "ani": { }, 333 | "pos": { } 334 | } 335 | }, 336 | "name": "有话好好说", 337 | "times": { 338 | "updated": 1406946557, 339 | "created": 1350478063 340 | }, 341 | "_ui": { 342 | "layout": { 343 | "y": 5, 344 | "x": 3, 345 | "w": 1, 346 | "h": 1 347 | }, 348 | "type": "metro_cell_title" 349 | }, 350 | "id": "1840", 351 | "type": "item", 352 | "ns": "video" 353 | }, 354 | { 355 | "target": { 356 | "type": "item" 357 | }, 358 | "images": { 359 | "back": { 360 | "url": "http://img3.imgtn.bdimg.com/it/u=3138557017,3595987722&fm=23&gp=0.jpg", 361 | "ani": { }, 362 | "pos": { } 363 | } 364 | }, 365 | "name": "钢铁侠2", 366 | "times": { 367 | "updated": 1406944533, 368 | "created": 1350477969 369 | }, 370 | "_ui": { 371 | "layout": { 372 | "y": 6, 373 | "x": 1, 374 | "w": 1, 375 | "h": 1 376 | }, 377 | "type": "metro_cell_title" 378 | }, 379 | "id": "973824", 380 | "type": "item", 381 | "ns": "video" 382 | }, 383 | { 384 | "target": { 385 | "type": "item" 386 | }, 387 | "images": { 388 | "back": { 389 | "url": "http://img1.imgtn.bdimg.com/it/u=3528724564,1115484739&fm=23&gp=0.jpg", 390 | "ani": { }, 391 | "pos": { } 392 | } 393 | }, 394 | "name": "阿甘正传", 395 | "times": { 396 | "updated": 1406944533, 397 | "created": 1350477969 398 | }, 399 | "_ui": { 400 | "layout": { 401 | "y": 6, 402 | "x": 2, 403 | "w": 1, 404 | "h": 1 405 | }, 406 | "type": "metro_cell_title" 407 | }, 408 | "id": "984922", 409 | "type": "item", 410 | "ns": "video" 411 | }, 412 | { 413 | "target": { 414 | "type": "item" 415 | }, 416 | "images": { 417 | "back": { 418 | "url": "http://img3.imgtn.bdimg.com/it/u=19424624,1026332107&fm=23&gp=0.jpg", 419 | "ani": { }, 420 | "pos": { } 421 | } 422 | }, 423 | "name": "肖申克的救赎", 424 | "times": { 425 | "updated": 1406944533, 426 | "created": 1350477969 427 | }, 428 | "_ui": { 429 | "layout": { 430 | "y": 6, 431 | "x": 3, 432 | "w": 1, 433 | "h": 1 434 | }, 435 | "type": "metro_cell_title" 436 | }, 437 | "id": "736452", 438 | "type": "item", 439 | "ns": "video" 440 | } 441 | 442 | 443 | ], 444 | "images": { }, 445 | "name": "热点", 446 | "times": { 447 | "updated": 0, 448 | "created": 0 449 | }, 450 | "_ui": { 451 | "type": "metro" 452 | }, 453 | "id": "recommend", 454 | "type": "album", 455 | "ns": "video" 456 | }, 457 | { 458 | "items": [ 459 | { 460 | "target": { 461 | "type": "item_list" 462 | }, 463 | "images": { 464 | "back": { 465 | "url": "http://file.market.xiaomi.com/download/Duokan/d076ca88-8f46-4345-85eb-7e854e8f2c86/dk987144_20140812121529_b1080.jpg", 466 | "ani": { }, 467 | "pos": { } 468 | } 469 | }, 470 | "name": "纪录片", 471 | "times": { 472 | "updated": 0, 473 | "created": 0 474 | }, 475 | "_ui": { 476 | "layout": { 477 | "y": 1, 478 | "x": 1, 479 | "w": 1, 480 | "h": 2 481 | }, 482 | "type": "metro_cell" 483 | }, 484 | "id": "5", 485 | "type": "category", 486 | "ns": "video" 487 | }, 488 | { 489 | "target": { 490 | "type": "item_list" 491 | }, 492 | "images": { 493 | "back": { 494 | "url": "http://file.market.xiaomi.com/download/Duokan/d1431eff-d20b-48da-a62a-4a51e0c699b0/dk204_33554432_601_20140825164044_1.jpg", 495 | "ani": { }, 496 | "pos": { } 497 | } 498 | }, 499 | "name": "电视剧", 500 | "times": { 501 | "updated": 0, 502 | "created": 0 503 | }, 504 | "_ui": { 505 | "layout": { 506 | "y": 1, 507 | "x": 2, 508 | "w": 2, 509 | "h": 1 510 | }, 511 | "type": "metro_cell" 512 | }, 513 | "id": "2", 514 | "type": "category", 515 | "ns": "video" 516 | }, 517 | { 518 | "target": { 519 | "type": "item_list" 520 | }, 521 | "images": { 522 | "back": { 523 | "url": "http://file.market.xiaomi.com/download/b95/56d5ce9085f6922d566159eeb99166a7e9504c84/content_sort_education_bg_1080.png", 524 | "ani": { }, 525 | "pos": {"x":0, "y":345} 526 | }, 527 | "icon": { 528 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 529 | "ani": { }, 530 | "pos": { } 531 | } 532 | }, 533 | "name": "综艺", 534 | "times": { 535 | "updated": 0, 536 | "created": 0 537 | }, 538 | "_ui": { 539 | "layout": { 540 | "y": 2, 541 | "x": 2, 542 | "w": 1, 543 | "h": 1 544 | }, 545 | "type": "metro_cell" 546 | }, 547 | "id": "4", 548 | "type": "category", 549 | "ns": "video" 550 | }, 551 | { 552 | "target": { 553 | "type": "item_list" 554 | }, 555 | "images": { 556 | "back": { 557 | "url": "http://file.market.xiaomi.com/download/d07/6ebab501f7352d47d9d51042d87aa16f40df5197/content_sort_variety_bg.png", 558 | "ani": { }, 559 | "pos": {"x":0, "y":345} 560 | }, 561 | "icon": { 562 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 563 | "ani": { }, 564 | "pos": { } 565 | } 566 | }, 567 | "name": "教育", 568 | "times": { 569 | "updated": 0, 570 | "created": 0 571 | }, 572 | "_ui": { 573 | "layout": { 574 | "y": 2, 575 | "x": 3, 576 | "w": 1, 577 | "h": 1 578 | }, 579 | "type": "metro_cell" 580 | }, 581 | "id": "7", 582 | "type": "category", 583 | "ns": "video" 584 | }, 585 | { 586 | "target": { 587 | "type": "item_list" 588 | }, 589 | "images": { 590 | "back": { 591 | "url": "http://file.market.xiaomi.com/download/Duokan/f2a67e48-37aa-4f48-a749-4140045fef12/dk204_50331648_601_20140818162509_1.jpg", 592 | "ani": { }, 593 | "pos": { } 594 | } 595 | }, 596 | "name": "卡通", 597 | "times": { 598 | "updated": 0, 599 | "created": 0 600 | }, 601 | "_ui": { 602 | "layout": { 603 | "y": 3, 604 | "x": 1, 605 | "w": 1, 606 | "h": 2 607 | }, 608 | "type": "metro_cell" 609 | }, 610 | "id": "3", 611 | "type": "category", 612 | "ns": "video" 613 | }, 614 | { 615 | "target": { 616 | "type": "item_list" 617 | }, 618 | "images": { 619 | "back": { 620 | "url": "http://file.market.xiaomi.com/download/541/c281cf4dc153518ebbfc1de15ea59aaff09fa6bc/content_sort_music_bg.png", 621 | "ani": { }, 622 | "pos": { } 623 | }, 624 | "icon": { 625 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 626 | "ani": { }, 627 | "pos": { } 628 | } 629 | }, 630 | "name": "体育", 631 | "times": { 632 | "updated": 0, 633 | "created": 0 634 | }, 635 | "_ui": { 636 | "layout": { 637 | "y": 3, 638 | "x": 2, 639 | "w": 1, 640 | "h": 1 641 | }, 642 | "type": "metro_cell" 643 | }, 644 | "id": "8", 645 | "type": "category", 646 | "ns": "video" 647 | }, 648 | { 649 | "target": { 650 | "type": "item_list" 651 | }, 652 | "images": { 653 | "back": { 654 | "url": "http://file.market.xiaomi.com/download/b95/56d5ce9085f6922d566159eeb99166a7e9504c84/content_sort_education_bg_1080.png", 655 | "ani": { }, 656 | "pos": { } 657 | }, 658 | "icon": { 659 | "url": "http://file.market.xiaomi.com/download/5d3/140136d9e31f3002a67bacc65fa5566c665e1e59/content_sort_title_movie.png", 660 | "ani": { }, 661 | "pos": { } 662 | } 663 | }, 664 | "name": "电影", 665 | "times": { 666 | "updated": 0, 667 | "created": 0 668 | }, 669 | "_ui": { 670 | "layout": { 671 | "y": 3, 672 | "x": 3, 673 | "w": 1, 674 | "h": 1 675 | }, 676 | "type": "metro_cell" 677 | }, 678 | "id": "1", 679 | "type": "category", 680 | "ns": "video" 681 | }, 682 | { 683 | "target": { 684 | "type": "item_list" 685 | }, 686 | "images": { 687 | "back": { 688 | "url": "http://file.market.xiaomi.com/download/Duokan/aa16cf97-7c89-4e5b-89ef-243b4ba4b25b/dk204_1677721600_601_20140818162528_1.jpg", 689 | "ani": { }, 690 | "pos": { } 691 | } 692 | }, 693 | "name": "乐看", 694 | "times": { 695 | "updated": 0, 696 | "created": 0 697 | }, 698 | "_ui": { 699 | "layout": { 700 | "y": 4, 701 | "x": 2, 702 | "w": 2, 703 | "h": 1 704 | }, 705 | "type": "metro_cell" 706 | }, 707 | "id": "17", 708 | "type": "category", 709 | "ns": "video" 710 | }, 711 | { 712 | "target": { 713 | "type": "item_list" 714 | }, 715 | "images": { 716 | "back": { 717 | "url": "http://file.market.xiaomi.com/download/Duokan/88d42f07-b2e5-4b2b-8dda-95d0324c00cb/34a8331b9d7bac23bc3cc1a77fa70351.jpg", 718 | "ani": { }, 719 | "pos": { } 720 | } 721 | }, 722 | "name": "义方", 723 | "times": { 724 | "updated": 0, 725 | "created": 0 726 | }, 727 | "_ui": { 728 | "layout": { 729 | "y": 5, 730 | "x": 1, 731 | "w": 1, 732 | "h": 2 733 | }, 734 | "type": "metro_cell" 735 | }, 736 | "id": "18", 737 | "type": "category", 738 | "ns": "video" 739 | }, 740 | { 741 | "target": { 742 | "type": "item_list" 743 | }, 744 | "images": { 745 | "back": { 746 | "url": "http://file.market.xiaomi.com/download/d1d/2a76e5182d674608f9877b44dd9d103af286b49b/dk952868_20130415111126_b1080.jpg", 747 | "ani": { }, 748 | "pos": { } 749 | } 750 | }, 751 | "name": "电子竞技", 752 | "times": { 753 | "updated": 0, 754 | "created": 0 755 | }, 756 | "_ui": { 757 | "layout": { 758 | "y": 5, 759 | "x": 2, 760 | "w": 1, 761 | "h": 2 762 | }, 763 | "type": "metro_cell" 764 | }, 765 | "id": "19", 766 | "type": "category", 767 | "ns": "video" 768 | }, 769 | { 770 | "target": { 771 | "type": "item_list" 772 | }, 773 | "images": { 774 | "back": { 775 | "url": "http://file.market.xiaomi.com/download/Duokan/05b609ec-c0ad-476c-9ce9-5403ffa52b2d/dk988274_20140922095850_b1080.jpg", 776 | "ani": { }, 777 | "pos": { } 778 | } 779 | }, 780 | "name": "乐看记录片", 781 | "times": { 782 | "updated": 0, 783 | "created": 0 784 | }, 785 | "_ui": { 786 | "layout": { 787 | "y": 5, 788 | "x": 3, 789 | "w": 1, 790 | "h": 2 791 | }, 792 | "type": "metro_cell" 793 | }, 794 | "id": "20", 795 | "type": "album", 796 | "ns": "video" 797 | }, 798 | { 799 | "target": { 800 | "type": "item_list" 801 | }, 802 | "images": { 803 | "back": { 804 | "url": "http://file.market.xiaomi.com/download/b95/56d5ce9085f6922d566159eeb99166a7e9504c84/content_sort_education_bg_1080.png", 805 | "ani": { }, 806 | "pos": { } 807 | }, 808 | "icon": { 809 | "url": "http://ico.ooopic.com/ajax/iconpng/?id=127436.png", 810 | "ani": { }, 811 | "pos": { } 812 | } 813 | }, 814 | "name": "我的收藏", 815 | "times": { 816 | "updated": 0, 817 | "created": 0 818 | }, 819 | "_ui": { 820 | "layout": { 821 | "y": 7, 822 | "x": 1, 823 | "w": 1, 824 | "h": 1 825 | }, 826 | "type": "metro_cell" 827 | }, 828 | "id": "favor", 829 | "type": "category", 830 | "ns": "video" 831 | }, 832 | { 833 | "target": { 834 | "type": "item_list" 835 | }, 836 | "images": { 837 | "back": { 838 | "url": "http://file.market.xiaomi.com/download/d07/6ebab501f7352d47d9d51042d87aa16f40df5197/content_sort_variety_bg.png", 839 | "ani": { }, 840 | "pos": { } 841 | }, 842 | "icon": { 843 | "url": "http://img.web07.cn/UpImg/Png/201302/25/png353873251635571.png", 844 | "ani": { }, 845 | "pos": { } 846 | } 847 | }, 848 | "name": "观看历史", 849 | "times": { 850 | "updted": 0, 851 | "created": 0 852 | }, 853 | "_ui": { 854 | "layout": { 855 | "y": 7, 856 | "x": 2, 857 | "w": 1, 858 | "h": 1 859 | }, 860 | "type": "metro_cell" 861 | }, 862 | "id": "history", 863 | "type": "category", 864 | "ns": "video" 865 | } 866 | 867 | ], 868 | "images": { }, 869 | "name": "分类", 870 | "times": { 871 | "updated": 0, 872 | "created": 0 873 | }, 874 | "_ui": { 875 | "type": "metro" 876 | }, 877 | "id": "categories", 878 | "type": "album", 879 | "ns": "video" 880 | }, 881 | { 882 | "items": [ 883 | { 884 | "target": { 885 | "type": "item_list" 886 | }, 887 | "images": { 888 | "back": { 889 | "url": "http://photocdn.sohu.com/20110427/Img306583181.jpg", 890 | "ani": { }, 891 | "pos": { } 892 | } 893 | }, 894 | "name": "尼古拉斯·凯奇", 895 | "times": { 896 | "updated": 0, 897 | "created": 0 898 | }, 899 | "_ui": { 900 | "layout": { 901 | "y": 1, 902 | "x": 1, 903 | "w": 1, 904 | "h": 1 905 | }, 906 | "type": "metro_cell_title" 907 | }, 908 | "id": "尼古拉斯·凯奇", 909 | "type": "search", 910 | "ns": "video" 911 | }, 912 | { 913 | "target": { 914 | "type": "item_list" 915 | }, 916 | "images": { 917 | "back": { 918 | "url": "http://www.superiorpics.com/pictures2/FreemanAG010.jpg", 919 | "ani": { }, 920 | "pos": { } 921 | } 922 | }, 923 | "name": "摩根·弗里曼", 924 | "times": { 925 | "updated": 0, 926 | "created": 0 927 | }, 928 | "_ui": { 929 | "layout": { 930 | "y": 1, 931 | "x": 2, 932 | "w": 1, 933 | "h": 1 934 | }, 935 | "type": "metro_cell_title" 936 | }, 937 | "id": "摩根·弗里曼", 938 | "type": "search", 939 | "ns": "video" 940 | }, 941 | { 942 | "target": { 943 | "type": "item_list" 944 | }, 945 | "images": { 946 | "back": { 947 | "url": "http://file.market.xiaomi.com/download/b95/56d5ce9085f6922d566159eeb99166a7e9504c84/content_sort_education_bg_1080.png", 948 | "ani": { }, 949 | "pos": {"x":0, "y":345} 950 | }, 951 | "icon": { 952 | "url": "http://photocdn.sohu.com/20111129/Img327248234.jpg", 953 | "ani": { }, 954 | "pos": { } 955 | } 956 | }, 957 | "name": "赵薇", 958 | "times": { 959 | "updated": 0, 960 | "created": 0 961 | }, 962 | "_ui": { 963 | "layout": { 964 | "y": 1, 965 | "x": 3, 966 | "w": 1, 967 | "h": 1 968 | }, 969 | "type": "metro_cell_title" 970 | }, 971 | "id": "赵薇", 972 | "type": "search", 973 | "ns": "video" 974 | }, 975 | { 976 | "target": { 977 | "type": "item_list" 978 | }, 979 | "images": { 980 | "back": { 981 | "url": "http://news.cnhubei.com/xw/yl/201212/W020121219632943155998.jpg", 982 | "ani": { }, 983 | "pos": {"x":0, "y":345} 984 | } 985 | }, 986 | "name":"陈道明", 987 | "times": { 988 | "updated": 0, 989 | "created": 0 990 | }, 991 | "_ui": { 992 | "layout": { 993 | "y": 2, 994 | "x": 1, 995 | "w": 1, 996 | "h": 1 997 | }, 998 | "type": "metro_cell_title" 999 | }, 1000 | "id": "陈道明", 1001 | "type":"search", 1002 | "ns": "video" 1003 | }, 1004 | { 1005 | "target": { 1006 | "type": "item_list" 1007 | }, 1008 | "images": { 1009 | "back": { 1010 | "url": "http://himg2.huanqiu.com/attachment2010/2013/0226/20130226024904911.jpg", 1011 | "ani": { }, 1012 | "pos": { } 1013 | } 1014 | }, 1015 | "name": "梁朝伟", 1016 | "times": { 1017 | "updated": 0, 1018 | "created": 0 1019 | }, 1020 | "_ui": { 1021 | "layout": { 1022 | "y": 2, 1023 | "x": 2, 1024 | "w": 1, 1025 | "h": 1 1026 | }, 1027 | "type": "metro_cell_title" 1028 | }, 1029 | "id": "梁朝伟", 1030 | "type": "search", 1031 | "ns": "video" 1032 | }, 1033 | { 1034 | "target": { 1035 | "type": "item_list" 1036 | }, 1037 | "images": { 1038 | "back": { 1039 | "url": "http://star2.movie.chinayes.com/images/cover/6_1.jpg", 1040 | "ani": { }, 1041 | "pos": { } 1042 | } 1043 | }, 1044 | "name": "汤姆·汉克斯", 1045 | "times": { 1046 | "updated": 0, 1047 | "created": 0 1048 | }, 1049 | "_ui": { 1050 | "layout": { 1051 | "y": 2, 1052 | "x": 3, 1053 | "w": 1, 1054 | "h": 1 1055 | }, 1056 | "type": "metro_cell_title" 1057 | }, 1058 | "id": "汤姆·汉克斯", 1059 | "type": "search", 1060 | "ns": "video" 1061 | }, 1062 | { 1063 | "target": { 1064 | "type": "item_list" 1065 | }, 1066 | "images": { 1067 | "back": { 1068 | "url": "http://cdn4.hbimg.cn/store/snsthumbs/280_280/celebrity/201326/C02DBCCFA884E3F7F1AAA9BB.png", 1069 | "ani": { }, 1070 | "pos": { } 1071 | } 1072 | }, 1073 | "name": "吴秀波", 1074 | "times": { 1075 | "updated": 0, 1076 | "created": 0 1077 | }, 1078 | "_ui": { 1079 | "layout": { 1080 | "y": 3, 1081 | "x": 1, 1082 | "w": 1, 1083 | "h": 1 1084 | }, 1085 | "type": "metro_cell_title" 1086 | }, 1087 | "id": "吴秀波", 1088 | "type": "search", 1089 | "ns": "video" 1090 | }, 1091 | { 1092 | "target": { 1093 | "type": "item_list" 1094 | }, 1095 | "images": { 1096 | "back": { 1097 | "url": "http://img3.yxlady.com/yl/UploadFiles_5361/20130530/2013053015411819.jpg", 1098 | "ani": { }, 1099 | "pos": { } 1100 | } 1101 | }, 1102 | "name": "邓超", 1103 | "times": { 1104 | "updated": 0, 1105 | "created": 0 1106 | }, 1107 | "_ui": { 1108 | "layout": { 1109 | "y": 3, 1110 | "x": 2, 1111 | "w": 1, 1112 | "h": 1 1113 | }, 1114 | "type": "metro_cell_title" 1115 | }, 1116 | "id": "邓超", 1117 | "type": "search", 1118 | "ns": "video" 1119 | }, 1120 | { 1121 | "target": { 1122 | "type": "item_list" 1123 | }, 1124 | "images": { 1125 | "back": { 1126 | "url": "http://ts3.mm.bing.net/th?id=HN.607992663071655588&pid=1.7", 1127 | "ani": { }, 1128 | "pos": { } 1129 | } 1130 | }, 1131 | "name": "凯文·史派西", 1132 | "times": { 1133 | "updated": 0, 1134 | "created": 0 1135 | }, 1136 | "_ui": { 1137 | "layout": { 1138 | "y": 3, 1139 | "x": 3, 1140 | "w": 1, 1141 | "h": 1 1142 | }, 1143 | "type": "metro_cell_title" 1144 | }, 1145 | "id": "凯文·史派西", 1146 | "type": "search", 1147 | "ns": "video" 1148 | }, 1149 | { 1150 | "target": { 1151 | "type": "item_list" 1152 | }, 1153 | "images": { 1154 | "back": { 1155 | "url": "http://ent.cnr.cn/list/201409/W020140917285730544749.jpg", 1156 | "ani": { }, 1157 | "pos": { } 1158 | } 1159 | }, 1160 | "name": "周星驰", 1161 | "times": { 1162 | "updated": 0, 1163 | "created": 0 1164 | }, 1165 | "_ui": { 1166 | "layout": { 1167 | "y": 4, 1168 | "x": 1, 1169 | "w": 1, 1170 | "h": 1 1171 | }, 1172 | "type": "metro_cell_title" 1173 | }, 1174 | "id": "周星驰", 1175 | "type": "search", 1176 | "ns": "video" 1177 | }, 1178 | { 1179 | "target": { 1180 | "type": "item_list" 1181 | }, 1182 | "images": { 1183 | "back": { 1184 | "url": "http://images.china.cn/attachement/jpg/site1000/20100422/0019b91ebfca0d3a41770e.jpg", 1185 | "ani": { }, 1186 | "pos": { } 1187 | } 1188 | }, 1189 | "name": "王宝强", 1190 | "times": { 1191 | "updated": 0, 1192 | "created": 0 1193 | }, 1194 | "_ui": { 1195 | "layout": { 1196 | "y": 4, 1197 | "x": 2, 1198 | "w": 1, 1199 | "h": 1 1200 | }, 1201 | "type": "metro_cell_title" 1202 | }, 1203 | "id": "王宝强", 1204 | "type": "search", 1205 | "ns": "video" 1206 | }, 1207 | { 1208 | "target": { 1209 | "type": "item_list" 1210 | }, 1211 | "images": { 1212 | "back": { 1213 | "url": "http://fashion.lnd.com.cn/pic/attachement/jpg/site1/20130403/6c626d786c3712c5d0f706.jpg", 1214 | "ani": { }, 1215 | "pos": { } 1216 | } 1217 | }, 1218 | "name": "黄渤", 1219 | "times": { 1220 | "updated": 0, 1221 | "created": 0 1222 | }, 1223 | "_ui": { 1224 | "layout": { 1225 | "y": 4, 1226 | "x": 3, 1227 | "w": 1, 1228 | "h": 1 1229 | }, 1230 | "type": "metro_cell_title" 1231 | }, 1232 | "id": "黄渤", 1233 | "type": "search", 1234 | "ns": "video" 1235 | }, 1236 | { 1237 | "target": { 1238 | "type": "item_list" 1239 | }, 1240 | "images": { 1241 | "back": { 1242 | "url": "http://pic.newssc.org/0/11/97/78/11977813_606031.jpg", 1243 | "ani": { }, 1244 | "pos": { } 1245 | } 1246 | }, 1247 | "name": "闫妮", 1248 | "times": { 1249 | "updated": 0, 1250 | "created": 0 1251 | }, 1252 | "_ui": { 1253 | "layout": { 1254 | "y": 5, 1255 | "x": 1, 1256 | "w": 1, 1257 | "h": 1 1258 | }, 1259 | "type": "metro_cell_title" 1260 | }, 1261 | "id": "闫妮", 1262 | "type": "search", 1263 | "ns": "video" 1264 | }, 1265 | { 1266 | "target": { 1267 | "type": "item_list" 1268 | }, 1269 | "images": { 1270 | "back": { 1271 | "url": "http://cmsimg.67.com/upload/images/2012/07/19/c2hpeGkxMzQyNjY3NTYx.jpg", 1272 | "ani": { }, 1273 | "pos": { } 1274 | } 1275 | }, 1276 | "name": "孙红雷", 1277 | "times": { 1278 | "updated": 0, 1279 | "created": 0 1280 | }, 1281 | "_ui": { 1282 | "layout": { 1283 | "y": 5, 1284 | "x": 2, 1285 | "w": 1, 1286 | "h": 1 1287 | }, 1288 | "type": "metro_cell_title" 1289 | }, 1290 | "id": "孙红雷", 1291 | "type": "search", 1292 | "ns": "video" 1293 | }, 1294 | { 1295 | "target": { 1296 | "type": "item_list" 1297 | }, 1298 | "images": { 1299 | "back": { 1300 | "url": "http://img1.cache.netease.com/catchpic/A/A0/A0C54A3D20D2416BF324DA55501EAF06.jpg", 1301 | "ani": { }, 1302 | "pos": { } 1303 | } 1304 | }, 1305 | "name": "姚笛", 1306 | "times": { 1307 | "updated": 0, 1308 | "created": 0 1309 | }, 1310 | "_ui": { 1311 | "layout": { 1312 | "y": 5, 1313 | "x": 3, 1314 | "w": 1, 1315 | "h": 1 1316 | }, 1317 | "type": "metro_cell_title" 1318 | }, 1319 | "id": "姚笛", 1320 | "type": "search", 1321 | "ns": "video" 1322 | } 1323 | ], 1324 | "images": { }, 1325 | "name": "精选", 1326 | "times": { 1327 | "updated": 0, 1328 | "created": 0 1329 | }, 1330 | "_ui": { 1331 | "type": "metro" 1332 | }, 1333 | "id": "categories", 1334 | "type": "search", 1335 | "ns": "video" 1336 | } 1337 | ], 1338 | "preload": { 1339 | }, 1340 | "update_time": 1, 1341 | "base_url":"http://tv.mitvos.com/v2/" 1342 | } 1343 | -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_095748.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_095748.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_105432.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_105432.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_105433.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_105433.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_105434.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_105434.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_105514.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_105514.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_105515.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_105515.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_105656.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_105656.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_105659.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_105659.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_105701.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_105701.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_105706.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_105706.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_105714.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_105714.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_105716.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_105716.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_105719.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_105719.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_110110.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_110110.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_110111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_110111.jpg -------------------------------------------------------------------------------- /tv/game/open_source/IMG_20141018_110113.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/open_source/IMG_20141018_110113.jpg -------------------------------------------------------------------------------- /tv/game/share.md: -------------------------------------------------------------------------------- 1 | 2 |

欢迎光临“爱影士”

3 | 4 |
5 | 点击下载(微信:选择在浏览器中打开) 6 |
7 |
8 |
9 |
10 |
11 |
12 | 同时支持电视和手机,可以通过手机搜索,电视播放 13 |
14 |
电视效果
15 | 16 | 17 |
手机效果
18 |                     19 | 20 |
21 | 欢迎联系我们 22 |
23 | 24 | 25 | -------------------------------------------------------------------------------- /tv/game/version_upgrade.json: -------------------------------------------------------------------------------- 1 | { 2 | "miui": { 3 | "alpha": { 4 | "percent": "1000" 5 | }, 6 | "dev": { 7 | "percent": "0" 8 | }, 9 | "stable": { 10 | "percent": "0" 11 | } 12 | }, 13 | "upgrade_direct_noimie":"1", 14 | "includes": "mi note pro;mi 4;", 15 | "token": "小米视频", 16 | "excludes": "", 17 | "test_accounts": "", 18 | "min_miui": "190", 19 | "max_miui": "2000", 20 | "min_android": "16", 21 | "max_android": "100000", 22 | "include_miuis": "V4 V5 V6 V7", 23 | "exclude_miuis": "", 24 | "to_version": "2015071790", 25 | "gray": "20" 26 | } 27 | -------------------------------------------------------------------------------- /tv/game/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/video.png -------------------------------------------------------------------------------- /tv/game/video_cate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AiAndroid/stream/4250e6ca424b7a5e94b28a4af9dbefa3b297bdd8/tv/game/video_cate.png --------------------------------------------------------------------------------