Traverse ISO boxes
The boxes to traverse
Optional
Configuration options for traversal
A generator of boxes
const isoFile = await readFile('test/fixtures/captions.mp4')const boxes = readIsoBoxes(new Uint8Array(isoFile))for (const box of traverseIsoBoxes(boxes)) { equal(box.type, 'ftyp') break} Copy
const isoFile = await readFile('test/fixtures/captions.mp4')const boxes = readIsoBoxes(new Uint8Array(isoFile))for (const box of traverseIsoBoxes(boxes)) { equal(box.type, 'ftyp') break}
Traverse ISO boxes