-
Why is my video using the Wordpress direct video file path when displaying it in a AJAX modal?
I've developed a custom Wordpress theme and I'm using the Cloudinary plugin to deliver my media files. On first page load the images and videos are delivered using the Cloudinary url. But for some reason when a open a modal using AJAX to retrieve the data the video direct path gets delivered. The images are still being…
-
Need to add music to entire length of video file which was made by concatenation many video files.
Example:…
-
A couple questions about curl for rtmp
So live streaming has been in Beta almost how long I've been working with my OTT. I used to be able to get the curl rtmp example working and I can't find anything in the forum about live streaming. Is no one streaming live anymore? Is there anyone I can get a quick call into so I can ask some basic questions? This is the…
-
How to specify maximum duration in an incoming transformation
Hi, I'm adding an incoming transformation in my unsigned upload preset to set a maximum duration of 9 sec per video whenever a video is uploaded client-side. So, if user uploads a video>9 sec, the video duration would be cut to 9 sec. I'm using the conditional field in the incoming transformation section to set this up:…
-
Is there a way I can decrease sound of layered audio file of cloudinary link?
I have added sound to the above link. Although I want to decrease layered audio file sound by 50% and also retain the original sound of the video
-
How to concat videos present in different folders?
Unable to concat videos present in two different folders . Sample URL (not working) :…
-
How to generate video thumbnail from specific time index
Hello! I'm trying to generate a video thumbnail jpg from a specific time index as an eager transformation for each video I upload to cloudinary. I searched the docs, but I can't seem to find what I'm looking for. Any help would be much appreciated! Thanks
-
Has anyone figured out how to get the cloudinary video player top work nested in a swiper.js slide?
I can code an entire app from scratch and i canot ever get the cloudinary video player to work...lol I just do not understand. I have it working with a regular video here, but i really want to adaptive stream it. https://basement.egresswindows.app/videos/ Please look if you can, I really appreciate you.
-
Cloudinary Upload Widget And Video Player Inquiry
I made a custom video player using Cloudinary & imported the upload widget into my react app. How would I go about having users upload/post with the mp4 file playing on my custom video player, inside the app? Like, when they upload the video then hits "done", it posts inside my react app.
-
What are the Effective Cloudinary strategies for optimizing media assets in marketing?
Hello, Cloudinary community! I'm currently working on a marketing campaign and would love to hear your thoughts on leveraging Cloudinary for optimizing and delivering media assets to enhance user engagement. Are there any specific strategies, features, or integrations within Cloudinary that you have found effective in…
-
Cloudinary video player, non public access
Hi everyone, I want to create a video player that allows users to view private videos. Im returning a list of videos from a backend. I implemented it originally with videos with public access and all worked well var playlistSources = videos.map(video => ({ publicId: video.id, info: { title: video.name + '_' + video.year,…
-
Are credits charged for each request? How can I mitigate the cost?
Hello, First things first - thank you for such a lovely service and your help. These tools are taking my personal projs. to higher levels. Second - I'm wondering about how to mitigate credit usage in a Next.js app. I have a few images and a video uploaded to the CDN. In the Next app I am using your <CldImage/> and…
-
Video Concatenation in React.js
I am trying to concatenate one video to another in react.js, but the code snippet I copied from the docs isn't working. new CloudinaryVideo("kitten_fighting.mp4") .resize(fill().width(300).height(200)) .videoEdit( concatenate( videoSource("dog").transformation( new Transformation().resize(fill().width(300).height(200)) )…
-
Disable sample videos in new sub-account
When creating a new sub-account, it populates the account with sample videos. Is it possible to turn this off so it's empty? { "resources": [ { "asset_id": "d496c071a41578a4e4412dd0fb459a9f", "public_id": "samples/cld-sample-video", "format": "mp4", "version": 1680847049, "resource_type": "video", "type": "upload",…
-
Api to generate Video from set of images
I am searching for apis which could take input as set of images and then create video out of it. Moreover it will also work in case there APIs which can generate video using text
-
I have greenscreen videos on Cloudinary and need the background color changed.
Hi, how can I remove greenscreen from videos? I am not a programmer and need some guidance on how to process greenscreen videos with Cloudinary. Any guidance would be appreciated. Thanks, David
-
How to improve performance of Videos in React Native?
Hey, I'm pretty new to the world video optimization. We are currently working on a tiktok-like platform for mobile (i.e. people can swipe Videos). Because this app is made for mobile, there obviously are quite a few constraints regarding the performance expectations, set by apps like Tiktok and Instagram. Our goals is to…
-
How to decrease recorded video size from safari before uploading to cloudinary in react project?
I have react project where I am using firebase as backend, the project main purpose is to record short videos for business. I have used react media library to record videos from camera so when user recorded videos I get the blob file I convert it to. base64 before upload so 1 min video has a size of less then 2 mb which…
-
cloudinary-video-player v1.9.5 breaking Jest test.
I have a component library which is bundled with Rollup and has React component tests with Jest. Cloudinary-video-player is dynamically imported by a component and the test for this passes with v1.9.4, but fails with v1.9.5 FAIL @nintendo/component-library packages/component-library/src/ui/VideoPlayer/VideoPlayer.test.js ●…
-
Video concatenation with Text
Hey there, I'm struggling to create a video transformation URL. There are two videos: VIDEO A – short 5 second video with our animated company logo VIDEO B – long 15 minute webinar recording Here is what I want to achieve: Add a client name to VIDEO A using l_text Join the new VIDEO A to the beginning of VIDEO B Is this…
-
Send a new user a custom video with their username inserted into video and poster when they signup.
Hey everyone, here is the function I made to help utilize Cloudinary's on the fly transformation capabilities to send a new user an email with a custom video personalized with their username. If you already know the ropes and are familiar with firebase functions, you can skip right to the point and checkout the repo here:…