I’m unclear on the process of creating iFrames and adding them to a manifest. I haven’t come across any helpful documentation or resources either. I would love some help if anyone has done this before.
I’ve been able to create thumbnails using the Javascript SDK, but they aren’t being attached to any manifests, and I’m not sure how to do that.
const iframes = await api.encoding.encodings.streams.thumbnails.create(
encoding.id,
videoStream1.id,
new Thumbnail({
name: ‘iframes’,
height: 240,
width: 320,
unit: ThumbnailUnit.SECONDS,
interval: 4,
pattern: ‘iframe_%number%.jpeg’,
aspectMode: ThumbnailAspectMode.CROP,
outputs: [
new EncodingOutput({
outputId: outputId,
outputPath: outputPath + ‘/iframes’,
acl: [aclEntry]
})
]
}),
);