Storing multiple resolutions of the same video with presigned url
How do I store multiple resolutions of the same video? I've applied eager transformations with eager async on and tried uploading a video from the cloudinary console using that upload preset with the eager transformations but only the file with the original resolution is being uploaded, with other transformation options that I've set for in the upload preset like codec, format, quality etc inside the specified folder.
Comments
-
Hey @Funsai. Thanks for getting in touch.
When you apply eager transformations, the transformed assets aren't stored as separate items in your Cloudinary account. Instead, to access them, you would modify the delivery URL accordingly.
For instance, if I uploaded an image called
sample
to my account with the eager transformationsa_90
andc_fill,g_auto,w_200,h_200
, I would only seesample
in my Media Library. To access the transformed versions, I would get them from https://res.cloudinary.com/demo/image/upload/a_90/sample.jpg and https://res.cloudinary.com/demo/image/upload/c_fill,g_auto,w_200,h_200/sample.jpg.I hope this helps, but if anything is unclear, please let us know and we'll be happy to help further :)
1