From: Christian Weiske Date: Mon, 11 Nov 2019 18:00:00 +0000 (+0100) Subject: Image size information X-Git-Url: https://git.cweiske.de/ouya-game-data.git/commitdiff_plain/991acab1ce68405fb676d52aee71dee4c6624c9f Image size information --- diff --git a/game-metadata.html b/game-metadata.html index 9edd928..bd268b5 100644 --- a/game-metadata.html +++ b/game-metadata.html @@ -565,29 +565,21 @@ media - Details images+videos - media.details (optional) + Detail video + media.details.*.url - mediaTiles + mediaTiles.*.url (type=video) ?
[
-  {
-    "type: "image",
-    "urls": [
-      "full": "http://...",
-      "thumb": "http://...",
-    ],
-    "fp_url": "http://...."
-  },
   {
     "type": "video",
     "url": "https://vimeo.com/141878938"
   }
 ]
- + Allows free ordering of images and videos on the details page.
"fp" is probably "FilePicker".
fp_url is not used in OUYA's launcher. @@ -602,6 +594,71 @@ mediaTiles format. + + media + Detail image thumbnail + media.details.*.thumb + + + mediaTiles.*.urls.thumb (type=image) + ? + + Thumbnails were all size 852x479 +
[
+  {
+    "type: "image",
+    "urls": [
+      "full": "http://...",
+      "thumb": "http://...",
+    ],
+    "fp_url": "http://...."
+  },
+]
+ + + + media + Detail image full resolution + media.details.*.url + + + mediaTiles.*.urls.full (type=image) + ? + + Many detail images had a resolution of 1280x720. +
[
+  {
+    "type: "image",
+    "urls": [
+      "full": "http://...",
+      "thumb": "http://...",
+    ],
+    "fp_url": "http://...."
+  }
+]
+ + + + media + Detail image file picker URL + - + + + mediaTiles.*.fp_url + ? + +
[
+  {
+    "type: "image",
+    "urls": [
+      "full": "http://...",
+      "thumb": "http://...",
+    ],
+    "fp_url": "http://...."
+  }
+]
+ + media FIXME diff --git a/ouya-game.schema.json b/ouya-game.schema.json index 45cbb76..2a69ff5 100644 --- a/ouya-game.schema.json +++ b/ouya-game.schema.json @@ -210,7 +210,7 @@ }, "thumb": { - "description": "Small preview image", + "description": "Small preview image. Size should be 852x479.", "type": "string", "format": "url" }