-
Issue verifying webhook notification signature
I'm a bit concerned because no matter what I try the verfiyNotificationSignature function always returns false. I'm using the Cloudinary Node SDK. v2.config({ api_key: process.env.NEXT_PUBLIC_CLOUDINARY_API_KEY, api_secret: process.env.CLOUDINARY_API_SECRET, }); code snippets as follows: import { v2 } from "cloudinary";…
-
Restriction PDF
Hola, me cree una cuenta para practicar y hacer un proyecto web con imagenes incluidas, el tema es que cuando creo el archivo (pdf) y se carga correctamente luego no me permite verlo en la web con la url, no entiendo porque.
-
upload subfolders
Hi, how are you? It would be a question, I have a product project in NextJs and I wanted to know that I can make each product have its specific mass when it is created. For example: cellular products/cell01 cellular products/cell02 In this case, it would retrieve the product slug and create the subfolder using the product…
-
Getting Error: Must supply api_key
This is my config import { v2 as cloudinary } from "cloudinary"; import fs from "fs"; cloudinary.config({ cloud_name: process.env.CLOUDINARY_CLOUD_NAME, api_key: process.env.CLOUDINARY_API_KEY, api_secret: process.env.CLOUDINARY_API_SECRET,}); console.log("CLOUDINARY_API_KEY", process.env.CLOUDINARY_API_KEY); This prints…
-
Can I use tranformed video as overlay?
I have use case where I want to concatenate 100 - 150 clips of 10 seconds to make a highlight reel from a long may be 1-2 hour video. These can end up making the url long. So I was thinking whether I can transform each clips seperately then just kind of join it in the end using overlays. For ex I have to join 10 clips each…
-
Concatenation Storage Question
Hello, we are using the API to concatenate audio files. Let’s say we have an audio file that is 50MB and we want to create 100 different “localized” versions where part 1 is unique audio and part 2 of all the contented files is the same audio. Does the system create 100 new files containing the audio or does the…
-
Can't Upload Files To Root Location
I have 3 files with same name and different format: • favicon.ico • favicon.png • favicon.svg But I can't upload all of them because everytime I upload the newer file it replace the older file. Also I can't embed svg format into my website. Any solution?
-
How to set access_control with Windows CLI?
Hello! I am trying to upload an asset and set the access_control to token. However, I can't seem to get the formatting right on the command. call cld uploader upload 1.png -o use_filename true -o access_control '[{"access_type": "token"}]' error: upload() takes 1 positional argument but 2 were given It seems to be an issue…
-
Getting 494 Error
We generated this reel . We are getting 494 error. Please provide support this is a production critical issue.
-
Cloudinary video giving time out error.
http://res.cloudinary.com/ddyewklhk/video/upload/c_fill,du_12,h_1080,so_938.8,w_1920/fl_splice,l_video:ballerappCloudinary:66445980-D9CC-49D8-8D2A-FA656BF907EB-NL-merged.mp4:1713421058876/c_fill,du_12,h_1080,so_940.3,w_1920/fl_layer_apply/fl_splice,l_video:ballerappCloudinary:66445980-D9CC-49D8-8D2A-FA656BF907EB-NL-merged.m…
-
Cloudinary URL not loading for large video
I have an issue loading the Cloudinary URL and upon investigation, this is what I found Video size less than 100 BM with file extension + media transformation applied ⇒ media loads and plays 2. Video size greater than 100 BM with file extension + media transformation applied => video does not play media transformation…
-
Will there be a Collections API?
I am using Collections manually and Dynamic collections might also be useful. I would really like to programmatically build many more collections but there is no API. When might this be available? TIA, Mark
-
Is there any way to expire the signature after the media is uploaded ?
I am using cloudinary to store images, videos and GIFs. I am using nodejs to create the signatures. and below given cloudinary version. "cloudinary": "^2.1.0" Here is the code to generate signatures. const timestamp = Math.round(new Date() / 1000); const signatureParams = { public_id, timestamp, }; const signatureResult =…
-
Failed calling 'upload' - error: upload() takes 1 positional argument but 2 were given
Hi - I've been using the command line tool to upload images with bash for a few years, but it's just started erroring and I'm not sure why.. The error is - Failed calling 'upload' - error: upload() takes 1 positional argument but 2 were given The code is cld uploader upload ~[…]/$image public_id="images/" $public_id…
-
How to move one image from one folder to another?
I am trying to move an image from one folder to another with API and .NET here is my code: public string MoveImage(string oldPID, string newPID) { var cloudinary = new Cloudinary(cloudinaryUrl: "cloudinary://334819583972299:?????"); RenameParams renameParams = new RenameParams(oldPID, newPID) { FromPublicId = oldPID,…