Open
Description
I'm getting an export issue: error in worker EncodingError: Decoding error.
I have debug true, but the error information is quite basic.
Context:
If I run on the same setup with a simple composition.add(clip);
(clip being a videoclip) it will successfully export.
If I use stacked tracks like so...
const track = composition.createTrack("video");
track.stacked();
const copy = clip.copy();
copy.subclip(0, 100);
await track.add(copy);
Preview works correctly, but if fails with the export.
UPDATE: with a few clip added it works, but it seems to be an issue if you add a lot of clips.