Split sample into frames

Split sample into frames

post

Split a video sample into individual frames. Depending on the length of the video sample this will either execute immediately or return the ID of a job that will perform this action.

Authorizations
Path parameters
projectIdintegerrequired

Project ID

sampleIdintegerrequired

Sample ID

Body
fpsintegeroptional

Frames per second to extract from this video.

Responses
curl -L \
  --request POST \
  --url 'https://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/{sampleId}/split' \
  --header 'x-api-key: YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
    "fps": 1
  }'
{
  "success": true,
  "error": "text"
}

Last updated

Was this helpful?