-
Font latin extended character
I have a font where the character will not render, even encoded and escaped. in another font it renders fine. %C8%9B I tried inspecting the font in font-drop - but it shows as present. l_text:TiemposText-Regular.ttf_36:Dep%C4%83%C8%99e%C8%99te-%C8%9Bi%20recordurile ….
-
Concatenate and store on cloudinary
I made a transformation url and want to save on Cloudinary. Is there any api where we can directly put newly generated video ?
-
PDF Files Error
I'm using cloudinary as my default file storage for my django project. If I upload images from my application to cloudinary, I can get to view the uploaded image from the particular object's url. However, if I upload pdfs and I try viewing the uploaded pdf from application, I get the error "This page isn’t working If the…
-
Move image from one folder to another
Hi, How to move an image from one folder to another programatically using .net and your API? I found this article but it is not for .net https://support.cloudinary.com/hc/en-us/articles/202521002-How-to-move-an-asset-from-one-folder-to-another
-
How to make linear gradient fade with custom opacity level?
In photoshop, we used to make linear gradient as below. background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.06) 27.84%, rgba(0, 0, 0, 0.13) 53%, rgba(0, 0, 0, 0.34) 100%) I couldn't find any other optioin except 'b_rgb' parameter but I want to make graident opacity. At scroll depth 27.84%, opacity…
-
Problems loading and playing video assets [Next 14, React, TypeScript, Cloudinary-React]
Hi, I am using "@cloudinary/react": "^1.13.0", and "@cloudinary/url-gen": "^1.16.1" in my Next.js app, and have received several reports of videos taking a while to buffer, or never load at all. It seems most commonly users are experiencing this while on Chrome Mobile iOS, but we've seen this issue across all browsers, iOS…
-
There were any update on cloudinary environment V2 to connect with ?
Hi , good day, I am having problem to upload files images from my VPS from hostinger, This error appears: Error: getaddrinfo EAI_AGAIN api.cloudinary.com at GetAddrInfoReqWrap.onlookup [as oncomplete] (node:dns:71:26) { errno: -3001, code: 'EAI_AGAIN', syscall: 'getaddrinfo', hostname: 'api.cloudinary.com' }
-
when trying to upload image from postman i am getting unexpected end of form error
my index.js part const express = require("express")const app = express()const mongoose = require("mongoose")const cors = require("cors")const route = require("./route")const mult = require('multer')const fileUpload = require("express-fileupload"); app.use( fileUpload({ useTempFiles: true })); my clodinary function file -…
-
SVG transformation (e_colorize,co_rgb)
Hello ✋ I want to colorize the SVG using e_colorize transformation. For example I have SVG icon: https://res.cloudinary.com/lastminute-contenthub/e_colorize,co_rgb:ff00ff/f_png/v1/DAM/SVG/Custom%20Icons/2021%20redesign/HP/shadow_FS Here it works because I added the f_png transform. Without this transformation, an SVG is…
-
Issues with URL-Based Video Editing
Hey everyone, I'm encountering an issue where I'm unable to simultaneously trim and add subtitles to a video using a URL. Here's the URL I'm working with: It seems that when I set a start and end time for trimming, it overrides the subtitles, and vice versa. Any insights on why this might be happening would be greatly…
-
Media won't sync using the wordpress plugin
Media are stuck on uploading to cloudinary status. Using the CLI `wp cloudinary sync` or performing a manual sync using the internal api $sync->managers['push']->process_assets( $asset ); works fine. I can't download the report cause i get an error Fatal error: Uncaught Error: Call to a member function get_public_id() on…
-
SDk is not working with PHP version 7.4
-
Is it possible to extract secure_url from upload endpoint and store it on my own database?
Hello, So I have a Next.js app with Prisma, and what I want is to extract the secure_url of the image from the Cloudinary's upload endpoint, and send it to my BE endpoint("/api/product") and store this secure_url in my database. Is that possible to make it with Cloudinary? (I hope that what I wrote is understandable)…
-
Does cloudinary trim videos exactly according to start offset and duration parameter?
We generated this reel…
-
I am having challenge with cloudinary deletion.
const removeProduct = asyncHandler(async (req, res) => { try { let imageIds = []; const { id } = req.params const product = await Product.findById({ _id: id }); if (product) { for (let i = 0; i < product.image.length; i++) { const deleteImages = await extractPublicId(product.image[i].url); imageIds.push(deleteImages); }; }…