Bulk Start |
To start multiple jobs at once, enter a JSON array of objects with the following keys:
- "guid": -> Recording GUID
- "system" -> "solo4", "md", "smd", "p3d1", or "p3d2"
- "target" -> "v360", "v360_subtitle", "pvd", "laser_calibration"
- "parameters" -> JSON object of parameters for the specific system
|
Parameters for MD/SMD:
- "calibration" -> Calibration ID
- "shape" -> Reference shape for initial alignment
|
Parameters for P3D 1:
- "asset_guid" -> Single asset GUID, leave blank for all
- "calibration_guid" -> "GUID" for calibration
- "timesync" -> "none", "clap" (default), or "auto"
|
Parameters for P3D 2:
- "asset_guid" -> Single asset GUID, leave blank for all
- "calibration_guid" -> "GUID" for calibration, leave blank for auto
|
For example:
[
{ "guid": "000054_7255", "system": "solo4" },
{
"guid": "e4a5e451-8f0e-4e1a-be33-b3a50c9a3275",
"system": "p3d1",
"parameters": {
"calibration_guid": "p3d-1_33in-01",
"timesync": "clap"
}
}
]
|