Split sample into frames

Split sample into frames

Split a video sample into individual frames.

POSThttps://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/{sampleId}/split
Path parameters
projectId*integer

Project ID

sampleId*integer

Sample ID

Body
fpsinteger

Frames per second to extract from this video.

Response

OK

Body
success*boolean

Whether the operation succeeded

errorstring

Optional error description (set if 'success' was false)

Request
const response = await fetch('https://studio.edgeimpulse.com/v1/api/{projectId}/raw-data/{sampleId}/split', {
    method: 'POST',
    headers: {
      "Content-Type": "application/json"
    },
    body: JSON.stringify({}),
});
const data = await response.json();
Response
{
  "success": false,
  "error": "text"
}

Last updated