Video Upload
You can upload a video to use the 3D Gaussian Splatting algorithm. The video resolution must not exceed 1920x1080, and the duration should be no longer than 3 minutes.
Request
curl --location --request POST 'https://api.kiriengine.app/api/v1/open/3dgs/video' \
--header 'Authorization: Bearer ${YOUR_API_KEY}'\
--form 'isMesh="0"'\
--form 'isMask="0"'\
--form 'videoFile=@"/file/video.mp4"'
Response
{
"code": 0,
"msg": "string",
"data": {
"serialize": "796a6f52457844b4918db3eadd64becc",
"calculateType":3
},
"ok": true
}
Attributes
properties | type | description |
---|---|---|
videoFile | File | Video file |
serialize | String | Unique identifier for the task |
calculateType | Integer | 1: Photo Scan, 2: Featureless Object Scan, 3: 3DGS Scan |
isMesh | Integer | Default: 0: Turn off 3DGS to Mesh, 1: Turn on 3DGS to Mesh (3DGS projects are generated and stored as special PLY files. Turning on this feature will generate a separate mesh file) |
isMask | Integer | Default: 0: Turn off Auto Masking, 1: Turn on Auto Object Masking |
fileFormat | String | With 3DGS to Mesh turned on, the available file formats for generation: obj, fbx, stl, ply, glb, gltf, usdz, xyz |