-
permission to access metadata!
I get this error in my server side code; appreciate any help! Error fetching image metadata: Error: An error occurred in the Server Components render. The specific message is omitted in production builds to avoid leaking sensitive details. A digest property is included on this error instance which may provide additional…
-
Add structured metadata to upload in SDK , C# not applying
I have my code below, but the metadata is not applying when doing the upload. Can anyone help? RawUploadParams rawUploadParams = new RawUploadParams(); rawUploadParams.MetadataFields = new StringDictionary(); rawUploadParams.MetadataFields.Add("InternalID", "001"); // Upload an image and log the response to the console…
-
Returning Unformatted Data (or Label) from Structured Metadata
I am trying to add two custom structured meta data fields – city and country – to photos in my folder. When I fetch that data I get the ID's (e.g. Usa instead of USA, Puerto_montt instead of Puerto Montt). Is there a way to fetch the labels without trying to transform or map these locally?
-
Admin API get metadata of images for a particular folder
Hi, New to Cloudariny and I have a GET request that retrieves images in a folder. I'm not able to get my image meta data with this request. I try with context set to true to retrieve meta data but that is not working. Any help would be appreciated!
-
Not retreiving metadata for a get request by tags
Hey, I'm not receiving metadata when I try to pull images for a given tag. Any suggestions?
-
Conditional/workflow for metadata
Is it possible to create a workflow for metadata population? For example, if we have a dropdown as the first metadata field that is "license", selecting CC0 pre-populates some specific metadata fields, and "CC BY" populates fields in a different way. Is this possible with the Cloudinary web interface, or do we need to…
-
Does cloudinary trim videos exactly according to start offset and duration parameter?
We generated this reel…
-
How to get Embedded Metadata (EXIF) from an image?
I want to get all image from a folder using: const photoList = await cloudinary.v2.api.resources( { type: "upload", prefix: "<FOLDER_NAME>", metadata: true, }, function (error, result) { console.log(result, error); }, ); I can see the EXIF data from my images in the DAM and I need the DateTimeOriginal from the image's…
-
How to explicitly set the Duration of the Video
I have A question about the Metadata of the video. Let me provide you with full details. Here is what my Code Looks like when I Call the <CloudVideo/> { postFileMeta.cloudData && ( <CloudVideo publicId={postFileMeta.cloudData.public_id} /> } and Here is the code for <CloudVideo/> { const cld = useMemo( () => new…
-
Add value to the select single list structured metadata field
I want to use Node SDK and add through the API new value to the structured metadata select single list. I figured out that I must get the whole datasource, add a new item, and write a new data source. The problem is my list has thousands of items. Is there any easy way to add a single value without having to download the…
-
Structured metadata single selection list - limit of values
Hi, I have read and tested the limit of the datasource is 3000 values. My company needs much more to implement our business processes. Do you know maybe some good workaround for this thing or maybe Cloudinary has some plans to change/remove these limits?
-
Add structured metadata item to single selection list during editing metadata
Hi, I know an option exists to add the item to the select single list from the settings panel. My case is that users who are adding or editing assets metadata must be able to add value to the single selection list directly from the editing/adding assets view. Unfortunately, I can't find this option. Is it possible? Example…
-
Global search for metadata not working
Global Search is not finding photos using the embedded metadata anymore - we use this everyday to find specific photos and it stopped working on Monday. Is this a bug? Or a change to the way search works? It is production critical for us to be able to search for photos using the metadata as it is the quickest and most…
-
Structured metadata pseudo-array using "string" with comma-delimited data
My company has need of an array type field for structured metadata. This currently doesn't exist as an option for "Cloudinary Assets" (formerly DAM). To address this need, I have been given the recommendation to use a string type and have the value be a comma-delimited set of data. This seems to work, but there are some…
-
Search for empty value in metadata field AND specific value in another metadata field
I can search for an empty value in a metadata field with this expression: -metadata=client_award_level I can search for a value in a metadata field with this expression: metadata.material_number="49738066" But I get an error when I try to combine them with 'AND' -metadata=client_award_level AND…
-
Delete without a key? (client-side application)
Hi, I'm running a client side application. A long time ago, before I knew much about JS and front-end dev, I had setup some wrapper around the cloudinary endpoint, so my users can upload pictures, and delete them. While reviewing my code, I found that I use an api key in the bundled js. This is of course A Very Bad Idea.…
-
Setting up Conditional Metadata for your DAM
One of the great features of our DAM is how easy it is to find the video or image that you're looking for - quickly and easily. Our Product team have done a fantastic job with all the possible ways you can search for and navigate to your assets. As a DAM Admin though, to set up the best DAM for your teams, you will likely…