-
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); }; }…
-
Code level transformations with Wordpress plugin
Hi there. We are using the Wordpress plugin and I know there are various transformation setting options, but I would like to apply specific transformations at code-level. Featured images display with different crops in different views so I need a bit more granular control over them. I have tried using the Cloudinary SDK…
-
Cloudinary Upload Widget has stopped working on chrome
The cloudinary upload widget, included with this script, "'https://upload-widget.cloudinary.com/global/all.js'" has suddenly stopped working on chrome. The drag and drop feature of the upload widget is working fine but the button that says "Browse" is no longer working. It is acting as if there is no onClick. We're using…
-
Create empty folder
I am trying to create empty folder without uploading any photos. How to acheive that with .net api backend?
-
Conditionally change fetch format
Hi there, I'm trying to figure out whether it's possible to conditionally change the fetch format. My users are uploading in various formats and currently I'm converting all images to .jpg. IF however, the uploaded file is a PNG, I want this file to stay a PNG in case it has transparent background. Currently, I'm checking…
-
getting full path of folders
Hi, I am able to use api to get list of folder names and paths. I am getting only the name of the folder for the path part. Example if I have folders (folder1 and folder2), the names and paths are the same (name: folder1 and path: folder1). How to get the full path of the folder?