-
Console returning error in Next Cloudinary using video
Hi, I use nextjs and installed next-cloudinary. But in the console it returns two errors in localhost and in production. Does anyone know why these errors, I'm using the same codes as the examples Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'css') at e.setupThumbnailElement…
-
Background swap on any video
I have yet to find a way to easily remove the background from a video so we can then replace that background with any image. Our use case is like most mobile apps where users can easily change out the background behind them. And No - I do not want to force our users to film on a greenscreen. Let me know if this is on the…
-
[Wordpress plugin] Some videos don't sync
Hello everyone, I have a wordpress website that uses Cloudinary plugin to upload media files. I see that some videos don't sync and I don't know why. If I move the mouse on the error icon it says missing header/body separator . I didn't undestand why it happens only for few medias and I don't know how to investigate the…
-
TikTok URL Prefix Validation
Hi, I'm trying to publish content stored in Cloudinary to TikTok. TikTok will only allow content published from a verified domain or URL prefix. The way you do this is by uploading a .txt file to the URL and then TikTok will verify that the file is there. However, it's not working for some reason. I've tried giving a few…
-
Using Preview
Using the preview is awesome and fits my needs. My workflow so far is I upload a video, create the transcript and allow the user to either give me a preview of either 15 or 30 seconds. I was using the auto generated transcript to show subtitles outside the video. However since the preview is a shortened version of the…
-
I am getting CORS error while getting video analytics
Here is my code; const fetchVideoAnalytics = async (publicId) => { try { const response = await fetch( `https://api.cloudinary.com/v1_1/${cloudName}/video/analytics/views?expression=video_public_id=${publicId}`, { method: "GET", headers: { mode: "no-cors", Authorization: `Basic ${basicAuth}`, }, } ); const analyticsData =…
-
Inquiry About Video Analytics Update Timing
I’m curious about when the video analytics get updated. I’ve tried using the iframe and the cloudinary-video-player along with the CldVideoPlayer from Next.js, but I’m not seeing any updates in the Video Analytics. Anyone know how often this data refreshes? Thanks for any help!
-
Transformation : Blur doesn't work, everytime time out by Make
Hi, I have a problem with Cloudinary, i can't transform my vidéo with any kind of blur, all my request are timeout by Make (Integromat). Someone know what is going on or have a solution for that ?
-
Inconsistent Behavior from Start Offset
Hello - I'm experiencing inconsistent behavior with Start Offset and would appreciate any guidance! My understanding is that applying a start offset to an overlay directly (eg /l_video:overlay/so_3/fl_layer_apply) cuts off the first 3 seconds of the overlay, while applying the start offset to the layer placement (eg…
-
Is it possible to create a sequence of images from a video
I need to create a sequence of images from a video, I know it is possible to do something similar like transformations, video to gif or video to webp. But I need to store all the images and consume them in an specific way. Will this type of transformations store the images somewhere so I can use them after Cloudinary does…
-
Video transformation messing audio
The audio of my video gets messed up whenever I apply a transformation to it. Video without transformation Video with transformation I'm using the NodeJS SDK to generate the video URL const video = new CloudinaryVideo( video_public_id, cloudinary_config ); I've tried different audio encodings i.e…
-
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!
-
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…
-
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…
-
Preview image for uploaded videos
Is there a way, programmatically or otherwise, where one could build a process to get a snippet of a video to use as a preview image? Users on my platform have an image gallery, and I'd like to have the option to upload videos. For the videos, I'd like to have a static image in the gallery, preferably with a play button…