Creating video is time consuming. A well-made 5-minute video can take hours to plan, record, and edit — and that’sbeforewe start talking about making that video consistent with all the other videos on your site.
When we took on theJamstack Explorers project(a video-driven educational resource for web developers), we wanted to find the right balance of quality and shipping: what could we automate in our video production process to reduce the time and number of steps required to create video content without sacrificing quality?
With the help ofCloudinary, we were able to deliver a consistent branding approach in all our video content without adding a bunch of extra editing tasks for folks creating videos. And, as a bonus, if we update our branding in the future, we can update all the video branding across the whole site at once —no video editing required!
What does “video branding” mean?
To make every video on the Explorers site feel like it all fits together, we include a few common pieces in each video:
- A title scene
- A short intro bumper (video clip) that shows the Jamstack Explorers branding
- A short outro bumper that either counts down to the next video or shows a “mission accomplished” if this is the last video in the mission
Skip to the end: here’s how a branded video looks
To show the impact of adding the branding, here’s one of the videos from Jamstack Explorerswithoutany branding:
This video (and thisVue mission from Ben Hong)is legitimately outstanding! However, it starts and ends a little abruptly, and we don’t have a sense of where this video lives.
We worked with Adam Hald to create branded video assets that help give each video a sense of place. Check out the same video with all the Explorers branding applied:
We get the same great content, but now we’ve added a little extrava-va-voomthat makes this feel like it’s part of a larger story.
In this article, we’ll walk through how we automatically customize every video using Cloudinary.
How does Cloudinary make this possible?
Cloudinary is a cloud-based asset delivery network that gives us a powerful, URL-based API to manipulate and transform media. It supports all sorts of asset types, but where it really shines is with images and video.
To use Cloudinary, youcreate a free account, then upload your asset. This asset then becomes available at a Cloudinary URL:
https://res.cloudinary.com/netlify/image/upload/v1605632851/explorers/avatar.jpg ^^^^^^^ ^^^^^^^^^^ ^^^^^^^^^^^^^^^^^^^ | | | V V V cloud (account) name version (optional) file name
This URL points to the original image and can be used intags and other markup.
Dynamically adjust file format and quality to reduce file sizes
If we’re using this image on a website and want to improve our site performance, we may decide to reduce the size of this image by using next-generation formats like WebP, AVIF, and so on. These new formats are much smaller, but aren’t supported by all browsers, which would usually mean using a tool to generate multiple versions of this image in different formats, then using a
With Cloudinary, all we have to do is add a transformation to the URL:
https://res.cloudinary.com/netlify/image/upload/q_auto,f_auto/v1605632851/explorers/avatar.jpg ^^^^^^^^^^^^ | V automatic quality & format transformations
What we see in the browser is visually identical:
By setting the file format and quality settings to automatic (f_auto,q_auto), Cloudinary is able to detect which formats are supported by the client and serves the most efficient format at a reasonable quality level. In Chrome, for example, this image transforms from a 97.6kB JPG to a 15.4kB WebP, and all we had to do was add a couple of things to the URL!
We can transform our images in lots of different ways!
We can go further with other transformations, including resizing (w_150for “resize to 150px wide”) and color effects (e_grayscalefor “apply the grayscale effect”):
https://res.cloudinary.com/netlify/image/upload/q_auto,f_auto,w_150,e_grayscale/v1605632851/explorers/avatar.jpg
This is only a tiny taste of what’s possible — make sure tocheck out the Cloudinary docs for more examples!
There’s a Node SDK to make this a little more human-readable
For more advanced transformations like what we’re going to get into, writing the URLs by hand can get a little hard to read. We ended up using theCloudinary Node SDKto give us the ability to add comments and explain what each transformation was doing, and that’s been extremely helpful as we maintain and evolve the platform.
To install it, get your Cloudinary API key and secret from yourconsole, then install the SDK using npm:
# create a new directory mkdir cloudinary-video # move into the new directory cd cloudinary-video/ # initialize a new Node project npm init -y # install the Cloudinary Node SDK npm install cloudinary
Next, create a new file calledindex.jsand initialize the SDK with yourcloud_nameand API credentials:
const cloudinary = require('cloudinary').v2; // TODO replace these values with your own Cloudinary credentials cloudinary.config({ cloud_name: 'your_cloud_name', api_key: 'your_api_key', api_secret: 'your_api_secret', });
Don’t commit your API credentials to GitHub or share them anywhere. Use environment variables to keep them safe! If you’re unfamiliar with environment variables, Colby Fayock has written a greatintroduction to using environment variables.
Next, we can create the same transformation as before using slightly more human-readable configuration settings:
cloudinary.uploader // the first argument should be the public ID (including folders!) of the // image we want to transform .explicit('explorers/avatar', { // these two properties match the beginning of the URL: // https://res.cloudinary.com/netlify/image/upload/... // ^^^^^^^^^^^^ resource_type: 'image', type: 'upload', // "eager" means we want to run these transformations ahead of time to avoid // a slow first load time eager: [ { fetch_format: 'auto', quality: 'auto', width: 150, effect: 'grayscale', }, ], // allow this transformed image to be cached to avoid re-running the same // transformations over and over again overwrite: false, }) .then((result) => { console.log(result); });
Let’s run this code by typingnode index.jsin our terminal. The output will look something like this:
{ asset_id: 'fca4abba96ffdf70ef89498aa340ae4e', public_id: 'explorers/avatar', version: 1605632851, version_id: 'b8a923931af20404e89d03852ff1bff1', signature: 'e7201c9ab36cb5b6a0545cee4f5f8ee27fb7f99f', width: 300, height: 300, format: 'jpg', resource_type: 'image', created_at: '2020-11-17T17:07:31Z', bytes: 97633, type: 'upload', url: 'http://res.cloudinary.com/netlify/image/upload/v1605632851/explorers/avatar.jpg', secure_url: 'https://res.cloudinary.com/netlify/image/upload/v1605632851/explorers/avatar.jpg', access_mode: 'public', eager: [ { transformation: 'e_grayscale,f_auto,q_auto,w_150', width: 150, height: 150, bytes: 6192, format: 'jpg', url: 'http://res.cloudinary.com/netlify/image/upload/e_grayscale,f_auto,q_auto,w_150/v1605632851/explorers/avatar.jpg', secure_url: 'https://res.cloudinary.com/netlify/image/upload/e_grayscale,f_auto,q_auto,w_150/v1605632851/explorers/avatar.jpg' } ] }
Under theeagerproperty, our transformations are shown along with the full URL to view the transformed image.
While the Node SDK is probably overkill for a straightforward transformation like this one, it becomesreallyhandy when we start looking at the complex transformations required to add video branding.
Transforming videos with Cloudinary
To transform our videos in Jamstack Explorers, we follow the same approach: each video is uploaded to Cloudinary, and then we modify the URLs to resize, adjust quality, and insert the title card and bumpers.
There are a few major categories of transformation that we’ll be tackling to add the branding:
- Overlays
- Transitions
- Text overlays
- Splicing
Let’s look at each of these categories and see if we can’t reimplement the Jamstack Explorers branding on Ben’s video! Let’s get set up by setting upindex.jsto transform our base video:
cloudinary.uploader .explicit('explorers/bumper', { // these two properties match the beginning of the URL: // https://res.cloudinary.com/netlify/image/upload/... // ^^^^^^^^^^^^ resource_type: 'video', type: 'upload', // "eager" means we want to run these transformations ahead of time to avoid // a slow first load time eager: [ { fetch_format: 'auto', quality: 'auto', height: 360, width: 640, crop: 'fill', // avoid letterboxing if videos are different sizes }, ], // allow this transformed image to be cached to avoid re-running the same // transformations over and over again overwrite: false, }) .then((result) => { console.log(result); });
You may have noticed that we’re using a video called “bumper” instead of Ben’s original video. This is due to the way Cloudinary orders videos as we add them together. We’ll add Ben’s video in the next section!
Combine two videos with a custom transition using Cloudinary
To add our bumpers, we need to add a second transformation “layer” to theeagerarray that adds a second video as an overlay.
To do this, we use theoverlaytransformation and set it tovideo:publicID, wherepublicIDis the Cloudinary public ID of the asset with any slashes (/) transformed to colons (:).
We also need to tell Cloudinary how to transition between the two videos, which we do using a special kind of video called aluma mattethat lets us mask one video with the black area of the video, and a second video with the white area. This results in a stylized cross-fade.
Here’s what the luma matte looks like on its own:
The video and the transition both have their own transformations, which means that we need to treat them as different “layers” in the Cloudinary transform. This means splitting them into separate objects, then adding additional objects to “apply” each layer, which allows us to call that section done and continue adding more transformations to the main video.
To tell Cloudinary this this is a luma matte and not another video, we set theeffecttype totransition.
Make the following changes inindex.jsto put all of this in place:
const videoBaseTransformations = { fetch_format: 'auto', quality: 'auto', height: 360, width: 600, crop: 'fill', } cloudinary.uploader .explicit('explorers/bumper', { // these two properties match the beginning of the URL: // <https:></https:>... // resource_type: 'video', type: 'upload', // "eager" means we want to run these transformations ahead of time to avoid // a slow first load time eager: [ videoBaseTransformations, { overlay: 'video:explorers:LCA-07-lifecycle-hooks', ...videoBaseTransformations, }, { overlay: 'video:explorers:transition', effect: 'transition', }, { flags: 'layer_apply' }, // { console.log(result); });
We need the same format, quality, and sizing transformations on all videos, so we pulled those out into a variable called videoBaseTransformations, then added a second object to contain the overlay.
If we run this withnode index.js, the video we get back looks like this:
Not bad! This already looks like it’s part of the Jamstack Explorers site, and that transition adds a nice flow from the common bumper into the custom video.
Adding the outro bumper works exactly the same: we need to add another overlay for the ending bumper and a transition. We won’t show this code in the tutorial, but you can see it in the source code if you’re interested.
Add a title card to a video using text overlays
To add a title card, there are two distinct steps:
- Extract a short video clip to serve as the title card background
- Add a text overlay with the video’s title
The next two sections walk through each step individually so we can see the distinction between the two.
Extract a short video clip to use as the title card background
When Adam Hald created the Explorers video assets, he included abeautiful intro videothat opens on a starry sky that’s perfect for a title card. Using Cloudinary, we can grab a few seconds of that starry sky and splice it into every video as a title card!
Inindex.js, add the following transformation blocks:
cloudinary.uploader .explicit('explorers/bumper', { // these two properties match the beginning of the URL: // https://res.cloudinary.com/netlify/image/upload/... // resource_type: 'video', type: 'upload', // "eager" means we want to run these transformations ahead of time to avoid // a slow first load time eager: [ videoBaseTransformations, { overlay: 'video:explorers:LCA-07-lifecycle-hooks', ...videoBaseTransformations, }, { overlay: 'video:explorers:transition', effect: 'transition', }, { flags: 'layer_apply' }, // { console.log(result); });
Using thespliceflag, we tell Cloudinary to add this video directly without a transition.
In the next set of transformations, we add three transformations we haven’t seen before:
- We setaudio_codectononeto remove sound from this segment of video.
- We setend_offsetto3, which means we’ll get only the first 3 seconds of the video.
- We add theaccelerateeffect with a value of-25, which slows the video down by 25%.
Runningnode index.jswill now give us a video that starts with just under 4 seconds of silent, starry skies:
Add text overlays to videos using Cloudinary
Our last step is to add a text overlay to show the video title!
Text overlays use the sameoverlayproperty as other overlays, but we pass an object with settings for the font. Cloudinary supports a wide variety of fonts —I haven’t been able to find a definitive list, but it seems to be a large number of Google Fonts — and if you’ve purchased a license to use a custom font, you canupload a custom font to Cloudinary for use in text overlaysas well.
cloudinary.uploader .explicit('explorers/bumper', { // these two properties match the beginning of the URL: // <https:></https:>... // resource_type: 'video', type: 'upload', // "eager" means we want to run these transformations ahead of time to avoid // a slow first load time eager: [ videoBaseTransformations, { overlay: 'video:explorers:LCA-07-lifecycle-hooks', ...videoBaseTransformations, }, { overlay: 'video:explorers:transition', effect: 'transition', }, { flags: 'layer_apply' }, // { console.log(result); });
In addition to setting the font size and alignment, we also apply a width of 500px (which will be centered by default) to keep our title text from smashing into the side of the title card, and set thecropvalue tofit, which will wrap longer titles. Setting thecolortowhitemakes our text visible against the dark, starry background.
Runnode index.jsto generate the URL and we’ll see our fully branded video, including a title card and bumpers!
Build your video branding once; use it everywhere
Creating bumpers, transitions, and title cards is a lot of work. Creating high-quality video content isalsoa lot of work. If we had to manually edit every Jamstack Explorers video to insert these title cards and bumpers, it’s extremely unlikely that we would have actually done it.
We knew that the only realistic way for us to keep the videos consistently branded was toreduce the frictionof adding the branding, and Cloudinary let us automate it entirely. This means that we can stay consistent without any manual steps!
As an added bonus, italsomeans that if we update our title cards or bumpers in the future, we can updateallthe branding forallthe videos by changing the code in one place. This is a huge relief for us, because we know that Explorers is going to continue to grow and evolve over time.
What to do next
Now that you know how to use Cloudinary to add custom branding, here are some additional resources to help you keep learning.
- See thesource code for this tutorial.
- See the Jamstack Explorerssource code for video branding.
- Learn more aboutCloudinary’s video transformation APIs.
- Learn about web development onJamstack Explorers.
- Learn how tocreate custom social media images using Cloudinary.
- Watch Ben’s full missionto see how it all comes together!
What else can you automate using Cloudinary? How much time could you save by automating the repetitive parts of your video editing workflow? I am exactly the kind of nerd who loves to talk about this stuff, so send me your ideas on Twitter!
The above is the detailed content of Cloudinary Tricks for Video. For more information, please follow other related articles on the PHP Chinese website!

This is the 3rd post in a small series we did on form accessibility. If you missed the second post, check out "Managing User Focus with :focus-visible". In

The CSS box-shadow and outline properties gained theme.json support in WordPress 6.1. Let's look at a few examples of how it works in real themes, and what options we have to apply these styles to WordPress blocks and elements.

This tutorial demonstrates creating professional-looking JavaScript forms using the Smart Forms framework (note: no longer available). While the framework itself is unavailable, the principles and techniques remain relevant for other form builders.

This article explores the top PHP form builder scripts available on Envato Market, comparing their features, flexibility, and design. Before diving into specific options, let's understand what a PHP form builder is and why you'd use one. A PHP form

If you’ve recently started working with GraphQL, or reviewed its pros and cons, you’ve no doubt heard things like “GraphQL doesn’t support caching” or

The Svelte transition API provides a way to animate components when they enter or leave the document, including custom Svelte transitions.

How much time do you spend designing the content presentation for your websites? When you write a new blog post or create a new page, are you thinking about

In this article we will be diving into the world of scrollbars. I know, it doesn’t sound too glamorous, but trust me, a well-designed page goes hand-in-hand


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version
