Project-scoped conformance
Image Sequence Profile
Detects missing and duplicate frame numbers.
This profile does not claim official standards certification.
Conforming example
{
"input": {
"synthetic": true,
"frames": [
1001,
1002,
1003,
1004
]
},
"result": {
"valid": true,
"errors": []
}
}Nonconforming example
{
"input": {
"synthetic": true,
"frames": [
1001,
1002,
1002,
1004
]
},
"result": {
"valid": false,
"errors": [
"duplicate_frame",
"missing_frame"
]
}
}