English:
Since build 1674 open-beta, pictures taken with the in-app Camera now have metadata for the author of the photo and the world that it was taken in.
However, the current metadata only contains machine-readable IDs, which are not in a human-readable format.
The current implementation has the following issues:
  • Log files must be referenced to identify world names from IDs
  • Old log files are deleted, making it impossible to identify world information for past photos
  • If worlds are deleted, it becomes impossible to identify where photos were taken
  • Using unofficial VRChat APIs to resolve IDs puts unnecessary load on VRChat's API servers
Therefore, we request adding display names for authors and worlds to the metadata [*].
This would enable direct identification of authors and worlds from photos without depending on logs.
Japanese:
build 1674 open-beta 以降、写真を撮ったときに撮影者と撮影したワールドがメタデータとして記録されるようになりました。
しかし、現在のメタデータには機械的な ID のみが含まれており、人間が読み取れる形式になっていません。
現在のままでは以下の問題点があります:
  • ID からワールド名を特定するにはログファイルを参照する必要がある
  • 古いログファイルは削除されるため、過去の写真のワールド情報が分からなくなる
  • ワールドが削除された場合、どのワールドで撮影されたか分からなくなる
  • 非公式の VRChat API を使用した場合、VRChat の API サーバへ余分な負荷をかけてしまう
そこで、撮影者とワールドの表示名をメタデータに追加することを要望します [*]。
これによりログに依存せずに写真から直接撮影者とワールドが把握できるようになります。
Note:
[*] Expected format example:
...
<xmp:CreatorTool>VRChat</xmp:CreatorTool>
<xmp:Author>usr_0e71c125-158c-41e0-b04a-97e7e6d22f62</xmp:Author>
...
<vrc:AuthorDisplayName>kobi32768</vrc:AuthorDisplayName>
<vrc:World>wrld_3dbdd288-1aba-4202-bf6b-211b47429f59</vrc:World>
<vrc:WorldDisplayName>nekoroom</vrc:WorldDisplayName>
...
Related canny:
Reference: Example of current photo metadata
<x:xmpmeta xmlns:x="adobe:ns:meta/">
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:xmp="http://ns.adobe.com/xap/1.0/">
<rdf:Description>
<xmp:CreatorTool>VRChat</xmp:CreatorTool>
<xmp:Author>usr_0e71c125-158c-41e0-b04a-97e7e6d22f62</xmp:Author>
</rdf:Description>
<rdf:Description xmlns:tiff="http://ns.adobe.com/tiff/1.0/">
<tiff:DateTime />
</rdf:Description>
<rdf:Description xmlns:dc="http://purl.org/dc/elements/1.1/">
<dc:title>
<rdf:Alt>
<rdf:li xml:lang="x-default"></rdf:li>
</rdf:Alt>
</dc:title>
</rdf:Description>
<rdf:Description xmlns:vrc="http://ns.vrchat.com/vrc/1.0/">
<vrc:World>wrld_3dbdd288-1aba-4202-bf6b-211b47429f59</vrc:World>
</rdf:Description>
</rdf:RDF>
</x:xmpmeta>