-
Missing dependency: Signed Upload requires an API key
Hi everyone and thanks for your help in advance! I am trying to do a simple signed image upload to my NextJS app but I am getting this error: Missing dependency: Signed Upload requires an API key This is my 'pages/api/sign-cloudinary-params' file import { v2 as cloudinary } from 'cloudinary'; cloudinary.config({…
-
How to overlay an image on top of non-transparent pixels only?
I'm trying to create a realistic t-shirt mockup. The 3 elements that I have working so far are: 1) t-shirt image 2) artwork 3) displacement map for the artwork (to match t-shirt folds) I am trying to add a shadow layer, which can essentially be a semi-transparent PNG. However, I can't figure out how to place it only on top…
-
How to get private image using public id with Admin API?
Hello, I am using signed uploads, which means my backend generates parameters, including a public id, and a signed signature for the frontend to use to upload an image. Some of the images that are uploaded have type = private. On my backend, I query Cloudinary for the images that the backend has generated a signature for…
-
Cloudinary and Webflow
Hi! Is there API integration with Cloudinary and a Webflow site? I am trying to add a "Record" button to my website and also a button for users to "Upload" an audio file. Is this just a matter of adding the right code embed? Any help would be appreciated. Thank you!
-
How to embed Video Player using Angular 18 with SSR
Hi All, I'm looking for a working example or explanation of how to embed the Cloudinary Video Player in an Angular site that uses the new SSR (Server-Side-Rendering) deployment model. Any help is appreciated!
-
Text auto wrapped
Hello, I have a question about this post: Can a text overlay be auto-wrapped? I'm particularly concerned with the last part. When I use a long text, it automatically goes upwards. How can I fix this? Example of short text: Example of long text: Thank you for your help!
-
How to perform HLS in nodejs
I want to stream a video which i uploaded on cloudinary and i stored the public id of that video in my database. So i want to fetch the id from my database and then stream that video here is the code snippet.
-
signed video upload in rust returns "Invalid Signature"
I tried uploading a video to a Rust backend using Signed Upload. However, creating a signed upload using the API according to this documentation keeps returning an error saying "Invalid Signature". I suspected it might be a hashing problem and tried it in another language using the same logic as in my Rust code. The…
-
How do you modify the public id for an image asset uploaded with the CldUploadWidget component?
I have a nextjs app that is implementing Cloudinary uploads using the CldUploadWidget react component. Everything is working great except that I have been unable to modify the public id for uploaded assets. I have my upload preset configured in my cloud settings to allow overwrites, unique filename: false, and use…
-
Not able to retrieve images from a folder.
The images in this folder do not reflect their containing folder's name in their public id as they were moved there in Dynamic folder mode, as a result when i try to fetch all the photos a that folder it results null. CODE: const fetchMediaFromFolder = async (folderPath) => { try { const result = await…
-
Create one-time url for authenticated media files?
I'm uploading authenticated images/videos, using my backend (get the signature) and then upload images/videos using React. For security purposes, I'd like to have a one-time link to each image on my website to prevent any person to inspect the page, take the image url, paste in the browser and download it. Or even share…
-
413 Request Entity Too Large
I am uploading files to cloudinary with this code in laravel ````public function upload(Request $request) { $folder = 'product_photo'; if ($request->hasFile('photo')) { $file = $request->file('photo'); request()->validate([ 'photo' => 'nullable|image|mimes:jpeg,png,jpg,gif,svg|max:6048', ]); $cloudinaryResponse =…
-
How to list all images inside folder ?
Hi, I am having issue connecting to cloudinary to fetch images inside folder. All other requests inside postman works fine, except this, I keep getting 404 html response. Please tell me what I did wrong here. Thank you Postman API:
-
Do duplicate image uploads with overwrite disabled incur bandwidth costs?
I use secure uploads in my application, specifying a public_id and overwrite=false in the upload options. When I attempt to upload an image with a public_id that already exists, I receive an immediate response indicating that the asset exists, marked by existing=true in the response. In this scenario, am I charged for…
-
How to add an audio file in CLT manifest
Hoping someone can point me in the right direction real quick as I searched all the doc and can find no mention of it. Thanks.