Skip to main content

Camera API

The Cameras API allows you to list all supported cameras. In future it will allow to manage camera lens parameters required for multi-camera motion capture setups.

The multicam API requires you to specify the type of camera that the video inputs where shot on. Only certain lenses are supported. You can find this list by making a query for listCameraSettings

List cameras

{
listCameraSettings {
items{
lens
}
after
first
}
}

Response

API

A multicam job allows you to optionally specify the rig that you want to use for retargeting. You can get a list of available rigs by using the below query

{
"data": {
"listCameraSettings": {
"items": [
{
"lens": "blackmagic-ursa-4k-24mm"
},
{
"lens": "card"
},
{
"lens": "goprogeneric-4k"
},
{
"lens": "goprogeneric-fhd"
},
{
"lens": "goprohero10-2-7k"
},
{
"lens": "goprohero10-4k"
},
{
"lens": "goprohero10-fhd"
},
{
"lens": "goprohero10-portrait-4k"
},
{
"lens": "goprohero11-2-7k"
},
{
"lens": "goprohero11-4k"
},
{
"lens": "goprohero11-fhd"
},
{
"lens": "goprohero12-2-7k"
},
{
"lens": "goprohero12-4k"
},
{
"lens": "goprohero12-fhd"
},
{
"lens": "goprohero13-4k"
},
{
"lens": "goprohero13-fhd"
},
{
"lens": "goprohero7-4k"
},
{
"lens": "goprohero7-fhd"
},
{
"lens": "goprohero8-4k"
},
{
"lens": "goprohero8-fhd"
},
{
"lens": "goprohero9-2k"
},
{
"lens": "goprohero9-4k"
},
{
"lens": "goprohero9-fhd"
},
{
"lens": "moveai-experimental"
},
{
"lens": "moveai-experimental-4k"
},
{
"lens": "optitrackprimecolor12mm-fhd"
},
{
"lens": "optitrackprimecolor6mm-fhd"
},
{
"lens": "panasonic-lumix-dc-bgh1-4k-12mm"
},
{
"lens": "sony-rx0i-hd"
},
{
"lens": "sony-rx0ii-fhd"
}
],
"after": null,
"first": 50
}
}
}

Next steps