This document outlines the structure of the json file that peel capture loads and saves. This data may be use for other automation applications, or a new file can be created for uploading. The file is saved when any modifications are made in the the interface.
takeName | The name of the take, must be unique within a shoot day. Used as a key to find linked files. |
take | The integer number of the take |
notes | user supplied notes |
description | user supplied description |
start | timecode start |
end | timecode end |
start_alt | secondary timecode start |
end_alt | secondary timecode end |
subjects | subjects name (usually provided by the mocap system) |
select | select status (string) |
marks | Timecode marks (list with “name” and “timecode” dictionaries) |
info | information string provided from the devices. |
{
"takes": [
{
"description": "This is a test, can you hear me?",
"end": "12:47:45:19",
"end_alt": "",
"info": "",
"marks": [
{
"name": "in",
"timecode": "12:47:40:27"
},
{
"name": "",
"timecode": "12:47:43:00"
},
{
"name": "out",
"timecode": "12:47:44:11"
}
],
"notes": "Just testing.",
"select": "A",
"start": "12:47:37:28",
"start_alt": "",
"subjects": [
"MarilynMonroe",
"JamesEarlJones",
"JackieChan",
"EwanMcgregor"
],
"take": 1,
"takeName": "TEST123_01"
}
]
}