Metadata Settings

With the release of version 1.25 of Littlstar VR Cinema on the PSVR, render settings such as video type, layout, and frame packing can now all be changed on the fly within the app itself. This means that users no longer have to worry about the filename to tell the player how to render the video. Metadata files are currently mapped to the filename itself, meaning that if you change the filename after setting the metadata, those changes will not be reflected. If you change the filename, the metadata for the video will have to be set again. In the future, metadata files will be able to adapt to filename changes.

NOTE: As of now, it is not recommended to edit these metadata files. In the future, they will be more versatile and allow for the editing of the video's title, description, and thumbnail.

Content Type

App SettingJson DescriptorDescription
FFFFThe video is a fixed frame, non-spherical video.
180Spherical_180The video is a spherical 180 degree video.
360Spherical_360The video is a spherical 360 degree video.

Content Type will default to FF if no type is provided.

Content Layout

App SettingJson DescriptorDescription
2DMonoThe video is a 2D, monoscopic video.
OU/TBOU_TBThe video's frames are vertically aligned.
LR/SBSLR_SBSThe video's frame are horizontally aligned.

Content Layout will default to 2D if no layout is provided.

Frame Packing

This feature is typically reserved for 3D FF videos. For more information, visit this link.

App SettingJson DescriptorDescription
HALFHR

The frame's resolution is halved to ensure the full stereoscopic image fits into a normally-sized 2D frame.

FULLFRThe two stereoscopic images are merged into a single frame, double the size of a 2D video's frame.

If the video is a 3D FF video, the frame packing method will default to HALF resolution. Otherwise, it will be FULL.


Metadata File Specification

The metadata file uses a .json format.

Note: This specification is under development and may change. 

Elements

FieldDescriptionTypeValues
titleThe name of the itemstringAny
descriptionThe description of the itemstringAny
durationTotal running time of video in secondsfloatAny
ls:content-typeThe content type of the itemstring"FF", "Spherical_180", "Spherical_360"
ls:content-layoutThe content layout of the itemstring"Mono", "OU_TB", "LR_SBS"
ls:frame-packingThe frame packing of the itemstring"NotAvailable", "HR", "FR"

Example

{
 "title":"Test Video",
 "description":"A video for testing",
 "duration":135.7,
 "ls:content-type":"Spherical_180",
 "ls:content-layout":"LR_SBS",
 "ls:frame-packing":"NotAvailable"
}