Product
Encoding - VOD
Question
Hello,
I’m using Azure Storage for storing all media files and thumbnails.
What I’d like is that the users that access the thumbnail are ablo to cache it.
I know that with the azure blob sdk i’m able to set cachecontrol of a file.
Is there a way to set that metada through the bitmovin api?
what i have so far…
await bitmovinApi.Encoding.Encodings.Streams.Thumbnails.CreateAsync(encodingId, streamId, new Thumbnail
{
Height = 1080,
Pattern = "Thumbnail-%number%.jpg",
Positions = { thumbnailPosition },
Unit = ThumbnailUnit.PERCENTS,
Outputs = encodingOutputs,
});