-
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!
-
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.
-
Transform multi-page PDFs to image (all instead of only the first page)
Hi there, I'm using Cloudinary's "transform a resource"-module on the automation platform Make to process user uploads. Overall this works fine, but when users upload multipage PDFs, only the first page is processed. I read that one can specifcy a particular page to be converted, but I'm looking at convert all pages, no…
-
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…
-
NextJS 14 Image upload with Server actions.
Hi there folks.I've had some struggle with getting my code working in NextJS with Server actions and TypeScript. Now that I solved it. I would like to share my code in case somebody else stumbled upon the same problem. Lets first start with the page.tsx. I use Shadcn for my forms and custom hooks for passing some props to…
-
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…
-
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…
-
🤖 Fix Small, Blurry Images with Cloudinary AI
Hey Cloudinary Community! I wanted you to know about our latest self-paced workshop in the Cloudinary Academy. https://training.cloudinary.com/courses/fixing-small-blurry-images-with-cloudinarys-generative-ai-30-minute-workshop With Cloudinary’s Generative AI transformations, you can fix one of the most common problems in…
-
🎉 Milestone Moment: Two Million Users!
Today's a very big day in the Cloudiverse. We've reached two million users -- just 3 years after hitting the one million mark! 🎉 A big thanks to this awesome community of customers, users and partners for helping us reach this incredible milestone. I’m proud to be on Team Cloudinary! To celebrate, we’re giving away 50…
-
Feedback on the Gen AI in the Studio
Hey awesome team! I tested the studio today and it worked very weirdly for me. Here you can find the Loom feedback video with the bug and how functionality worked for me: Happy to give more context if needed (via email).
-
Inability to upload images
I can't upload an image from my PC after signing in. I want to change a portrait image to landscape. Please, what do I do?
-
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 =…
-
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…
-
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 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:
-
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.
-
Download URL to pdf
Hello. I uploaded some pdf files using nodejs. I am developing an app in React Native, so now I have to have access to the download url of these pdf's. I have tried many approaches, used many types of url's, and up until now I could'nt find any download url that works. Please give me some help to find these download urls.
-
How can I upscale images programmatically without restriction to image size for my nextjs project?
I am building an AI image and video editing web app using nextjs. Based on the AI image feature I would like the cloudinary api upscale feature to upscale any images irrespective of the image size. How do I achieve that? Here is the cloudinary api uspscale feature code am using in my project "import { upscale } from…
-
Mp3 to M3U8 audio file bitrate and quality transformation.
I want to create an m3u8 file from my node api. Though it converts the extension type and i can easily play it on any m3u8 player. But it fails to perform other transformations like bitrates. I think cloudinary does not support adaptive streaming for audio only files, so i am creating 3 transformations with different…
-
413 Request Entity Too Large on Production but it uploads on Local server
this is my code 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 = Cloudinary::upload($file->getRealPath(), [ 'folder' =>…
-
How can I upload images >20MB using transform url?
I'm using cloudinary's transform url https://api.cloudinary.com/v1_1/demo/image/upload to optimize my images. It works fine for images smaller than 20MB but when I try to upload an image >20MB it fails. After researching I found out that that's the maximum image size which is allowed for paid plans. But the sdk's provide…
-
upload path
I am tryin to get an image upload to Cloudinary. The following code is what I am using: foreach (var file in args.Files) { var path = @"https://res.cloudinary.com/dtm6vdbf7/image/upload/" + file.FileInfo.Name; FileStream filestream = new FileStream(path, FileMode.Create, FileAccess.Write); await…
-
Upload webm as mp3
We're making a chat application in Flutter that features voice recording. On the web client, the files are encoded as webm and those are not supported for playback on iOS. I guess I can use the transformation tools to re encode the webm to mp3 on download - but this is probably not optimal, is there a way to automatically…
-
Picture turns on 90 degrees after I upload it from Strapi
I use Strapi for CMS and I want to save my pictures in Cloudinary. I have a preset in Cloudinary - a set of different characteristics that I want to apply to a photo before saving it. If I upload a photo directly to the Cloudinari library, the preset is applied. If I upload a photo from Strapi, in the metadata of which the…
-
Where i can get more information about 'create_video' endpoint?
I tried to create a video from a set of images following the instructions from . but only movement and change pacity are described there. I need to change scaling, rotate images etc. Wherre can i get more information about paramiters of jsonManifest? Maybe get more examples… And what is the approximate release date of this…
-
Clipping path in TIF is lost in JPG
Hello guys, I'm uploading a TIF file which contains a clipping path created in Photoshop. I would like download this file in JPG file format including the clipping path. When I download the JPG file and open it in Photoshop, the clipping path is gone. Does anybody had this behaviour before? Best Regards Ramin
-
I am facing cors issue and i am sure it is about cloudinary, the error is:Access to fetch at 'https:
import express from 'express'; import mongoose from 'mongoose'; import cors from 'cors'; import Article from './Schema/Article.js' const app = express(); import fileUpload from 'express-fileupload'; import { v2 as cloudinary } from 'cloudinary'; import { config as dotenvConfig } from 'dotenv'; dotenvConfig(); // Configure…
-
Use file format in conditionnal transformation (p.ex: f_svg/fl_sanitize if source is svg)
Is it possible to apply a specific transformation only if the image source is a given format. My goal is to apply special transformation if source is an svg and another transformation if file source is not an svg if svg : /fl_sanitize/f_svg else /w_400,h_400,c_fit/q_auto I alreay check documentation here
-
Preserve multiple AI transformations
Hello, I have a NextJS application and I use the CldUploadWidget to upload images and the CldImage component to apply transformations. What I'm trying to do is the following: 1. The user uploads an image with a guy with black shirt and black hat. 2. Applies transformation to recolor the shirt to be white with the recolor…
-
May 2024 Community Update
Hi all! Each month a lot of new content rolls through this community, so to help you find the gems in the mix, I’m sharing a few key resources you might have missed. So without further ado, here’s the May updates: Resource of the Month 📺 Syncing Local Folders to Cloudinary for Automated Cloud Storage In this DevJamp…
-
Cloudinary Gallery widget
Hi! Is there a way to make the photo gallery start over when it reaches the end? Currently, the last photo in a carousel pops up and you have to escape out of it to go back to the post.
-
Need some more help with displacement map.
Sorry for another thread but i did not understand what i did wrong in previous tries. This time i have a very simple thing. All i want help is placing the same size label into the displacement map of same size, feel free to resize the label if that's what it takes to make it work.…
-
About image retrieval
I am building Ai image saas platform where I am using cloudinary when I transformed the image it is not shown in home section named as recent images
-
How can I upload larger images?
I seem to be having trouble uploading any images > 1MB. For example the image at the below URL. I am using the ruby gem and am not able to get this to work even when I use the upload_large method or add a timeout. I consistently get the error: CloudinaryException: Error in loading…
-
Is there a way to crop custom coordinates using the React/NextJS SDK?
Hi! We use the nextJS component for displaying cloudinary images which works great. We want to build in the ability for admins to crop and move images around for profile pictures, which gives us a "zoom/scale" value and an x/y coordinate. It looks like both are supported via API, but not clear how we'd do this in our react…
-
Trying to overlay PNG images and I am wrong somewhere...
Long story short, I am trying to make a review system where I can overlay PNG's to make custom charts. Here are some examples of the direct URLs: https://res.cloudinary.com/dlxzju4kg/image/upload/botanist/3Heat.png https://res.cloudinary.com/dlxzju4kg/image/upload/botanist/1Spice.png…
-
Need some help with displacement effect.
Need some help, trying to get this displacement working, but unable to do so. I made the displacement map put it but for some reason the map is distorted. The background i need - https://res.cloudinary.com/dkaxmhco0/image/upload/v1716311455/main_background.jpg the label that needs to be cropped and added to the main…
-
Must supply api_key Error
import { v2 as cloudinary } from "cloudinary"; cloudinary.config({ cloud_name: process.env.CLOUDINARY_CLOUD_NAME, api_key: process.env.CLOUDINARY_API_KEY, api_secret: process.env.CLOUDINARY_API_SECRET }); const uploadOnCloudinary = async (localFilePath) => { try { // Upload the image const result = await…
-
files are automatically renamed on upload
HI, I am using the upload button in the media library and cloudinary automatically renames my uploaded files to somthing random. I have deleted the default ml_preset and created a new upload preset with the options Use filename or externally defined Public ID = on and Unique filename = off. Cloudinary still renames my…