-
October 2024 Community Update
The days are shorter, the nights are cooler, and it’s the spooky time of the year. And whether or not there’s scary creatures haunting you today, it’s time for our monthly roundup of the most important new features, tools, and updates in the Cloudinary ecosystem. Resource of the Month: New Guide to User Generated Content…
-
Where can I find images that were rejected by AWS Rekognition AI Moderation?
According to the Automatic image moderation flow documentation, rejected images are available for restoration: A rejected image does not appear in your media library, but is backed up, consuming storage, so that it can be restored if necessary. I have uploaded an image that got rejected by AWS Rekognition but I cannot find…
-
Invalid JSON response from server
Hello. So in my Spring application I have this CloudinaryService class with this function that's supposed to take a Base64-enconded image and upload it to Cloudinary: public String uploadFileFromBase64(String base64) { try { @SuppressWarnings("rawtypes") Map uploadedFile = cloudinary.uploader().upload(base64, // the error…
-
Search API: search by created_at with timestamp
Using the search API, I can search by created_at with this expression: "created_at>2023-09-01" But how can I include a timestamp? If I follow the format from this documentation: https://cloudinary.com/documentation/search_api#expression_fields "created_at>2023-09-01T08:00:00Z" I get the error: "Query Error (at position 25)…
-
How can I get an original video file by public ID without knowning the file extension?
Hi, I'm using the Cloudinary Java SDK to generate URL's for videos. I have the public ID of a video and I am trying to generate a URL to get that video without applying transformations. I'm running into trouble because I don't have the file extension of the uploaded video and I have strict transformations enabled. The URL…
-
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…
-
java.lang.RuntimeException: General Error -- getting this strange error while calling upload service
Hi Everyone, Since last few days, we have been receiving this weird error while trying to upload the images to cloudinary. java.lang.RuntimeException: General Error Unfortunately, this doesnt say much. All i do is, form a cloudinary url like this:…