Load workflows from mp4/mov files (#3543)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Christian Byrne
2025-04-26 12:31:29 -07:00
committed by GitHub
parent 82c5f02c3d
commit 99cc587abf
10 changed files with 299 additions and 2 deletions

View File

@@ -46,7 +46,8 @@ export type TextRange = {
export enum ASCII {
GLTF = 0x46546c67,
JSON = 0x4e4f534a
JSON = 0x4e4f534a,
OPEN_BRACE = 0x7b
}
export enum GltfSizeBytes {
@@ -78,3 +79,9 @@ export type GltfJsonData = {
}
[key: string]: any
}
/**
* Represents the content range [start, end) of an ISOBMFF box, excluding its header.
* Null if the box was not found.
*/
export type IsobmffBoxContentRange = { start: number; end: number } | null