README.md を更新
This commit is contained in:
41
README.md
41
README.md
@@ -1,3 +1,42 @@
|
|||||||
# Get-VRCMetaData
|
# Get-VRCMetaData
|
||||||
|
|
||||||
写真からMetaDataを取得するもの
|
写真からMetaDataを取得するもの
|
||||||
|
|
||||||
|
```
|
||||||
|
{
|
||||||
|
// ─── 基本情報 ───────────────────────────────
|
||||||
|
basic: {
|
||||||
|
fileName: "VRChat_2026-03-09_00-42-50.444_2048x1440.png", // ファイル名
|
||||||
|
fileSize: "3.1 MB", // ファイルサイズ
|
||||||
|
fileType: "image/png", // MIMEタイプ
|
||||||
|
lastModified: "2026/3/9 0:42:50" // 最終更新日時
|
||||||
|
},
|
||||||
|
|
||||||
|
// ─── VRChat関連メタ ─────────────────────────
|
||||||
|
vrc: [
|
||||||
|
{ key: "ワールドID", value: "wrld_xxxxx-xxxx" },
|
||||||
|
{ key: "ワールド名", value: "Birthday Celebration" },
|
||||||
|
{ key: "作者ID", value: "usr_xxxxx-xxxxxx-xxxx-xxxxxx" }
|
||||||
|
],
|
||||||
|
|
||||||
|
// ─── XMP(Adobe / VRChat が埋めるメタ) ─────────────
|
||||||
|
xmp: {
|
||||||
|
"作成ツール": "VRChat", // CreatorTool
|
||||||
|
"作者": "xxxx", // Author
|
||||||
|
"作成日時": "2026/3/9 9:41:43", // CreateDate
|
||||||
|
"更新日時": "2026/3/9 9:41:43", // ModifyDate
|
||||||
|
"撮影日時": "2026/3/9 9:41:43", // tiff:DateTime
|
||||||
|
"ワールドID": "wrld_59144203-xxxxxxx-xxxxx-xxxxxxxx",
|
||||||
|
"ワールド名": "Birthday Celebration",
|
||||||
|
"作者ID": "usr_xxxxx-xxxxxx-xxxx-xxxxxx"
|
||||||
|
},
|
||||||
|
|
||||||
|
// ─── PNG固有情報 ─────────────────────────
|
||||||
|
png: {
|
||||||
|
"幅": "2048px", // PNG幅
|
||||||
|
"高さ": "1440px", // PNG高さ
|
||||||
|
"色": "RGBA" // ColorType
|
||||||
|
// tEXt / iTXtに含まれる他のテキスト情報
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user