Add Metadata to Azure stored thumbnails

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,
        });

Hi,
Changing cache control is not supported at the moment.
Related thread (internal : EN-13661)

You might be able to achieve this on the Storage or CDN side directly.