{"id":33561,"date":"2024-04-16T07:00:00","date_gmt":"2024-04-16T14:00:00","guid":{"rendered":"https:\/\/cloudinary.com\/blog\/?p=33561"},"modified":"2025-04-16T14:26:09","modified_gmt":"2025-04-16T21:26:09","slug":"optimize-video-web-using-cloudinary","status":"publish","type":"post","link":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary","title":{"rendered":"How to Optimize Video for the Web Using Cloudinary"},"content":{"rendered":"<div class=\"wp-block-cloudinary-markdown \"><p>Users from all over the world have varying quality internet connections, data caps, and many other restrictions that make it difficult to download heavy content such as images and videos. To make content viewable to users, it has to be compressed and optimized well.<\/p>\n<p>Cloudinary offers a myriad of ways to optimize video content. In this blog post, we\u2019ll show you how to use URL transformations to optimize the delivery of your video content and ensure a smooth playback experience for as many users as possible.<\/p>\n<h2>What Are URL Transformations?<\/h2>\n<p>URL transformations are optional parameters that you can include in the content URLs that allow you to make alterations to the content that will be served. In the case of videos, these parameters allow you to control video quality, format, bitrate, and effects, among other things. Transformations are very versatile, and Cloudinary will do all the hard work of transparently re-encoding your content just by changing the URL from which the content is served, which allows you to avoid uploading multiple versions of your content manually.<\/p>\n<p>A standard link to an asset on Cloudinary doesn\u2019t contain much other than a key pointing to the asset you want to serve, in this case, a video. For example:<\/p>\n<p><a href=\"https:\/\/res.cloudinary.com\/demo\/video\/upload\/docs\/walking_talking\"><code>https:\/\/res.cloudinary.com\/demo\/video\/upload\/docs\/walking_talking<\/code><\/a><\/p>\n<p>To add a transformation to this URL, you add them right before the key, which in this case is <code>\/docs\/walking_talking<\/code>. Let\u2019s change the resolution of the video by specifying the width transform, which is <code>w_480<\/code> if I want to make the width 480 pixels wide:<\/p>\n<p>[<code>https:\/\/res.cloudinary.com\/demo\/video\/upload\/w_480\/docs\/walking_talking<\/code>(<a href=\"https:\/\/res.cloudinary.com\/demo\/video\/upload\/w_480\/docs\/walking_talking\">https:\/\/res.cloudinary.com\/demo\/video\/upload\/w_480\/docs\/walking_talking<\/a>)<\/p>\n<p>With that, the video now serves at the new resolution, and in this case, the height was automatically adjusted so that the aspect ratio remains the same. You can also apply more than one transformation on a video at once by adding a comma between your transformations. Let\u2019s add an effect by adding <code>e_blur<\/code>.<\/p>\n<p><a href=\"https:\/\/res.cloudinary.com\/demo\/video\/upload\/w_480,e_blur\/docs\/walking_talking\"><code>https:\/\/res.cloudinary.com\/demo\/video\/upload\/w_480,e_blur\/docs\/walking_talking<\/code><\/a><\/p>\n<h2>Video Quality and Codecs<\/h2>\n<p>Adjusting width and height can be useful for having more control over the size of your video content, but these are not the only options available. Let\u2019s look at a few other transformations that can help optimize video.<\/p>\n<p>First, let\u2019s take a look at video quality. This is a parameter that can be controlled from the <strong>Default video quality<\/strong> field in the console under <strong>Settings<\/strong> &gt; <strong>Product Environment Settings<\/strong> &gt; <strong>Optimization<\/strong>. By default, this is set to <strong>Automatic &#8211; good quality<\/strong> which is equivalent to the <code>q_80<\/code> transform being specified in your URL. You can either change this global setting to have it take effect everywhere or override it in the URL itself like so:<\/p>\n<p><a href=\"https:\/\/res.cloudinary.com\/demo\/video\/upload\/q_10\/docs\/walking_talking\"><code>https:\/\/res.cloudinary.com\/demo\/video\/upload\/q_10\/docs\/walking_talking<\/code><\/a><\/p>\n<p>Lowering the video quality will lower the file size at the expense of lowering the quality. In this example, I set a quality of 10, which is a very low quality. You can note this via the artifacts compared to <code>q_80<\/code> video.<\/p>\n<p>You can also transcode videos to other formats with parameters such as <code>f_webm<\/code> and <code>f_mp4<\/code> or by changing the extension at the end of the URL:<\/p>\n<p><a href=\"https:\/\/res.cloudinary.com\/demo\/video\/upload\/f_webm\/docs\/walking_talking\"><code>https:\/\/res.cloudinary.com\/demo\/video\/upload\/f_webm\/docs\/walking_talking<\/code><\/a><\/p>\n<p>In addition to the format, the video codec and profile can also be changed. For example, h264, a popular and widespread video codec, has \u201chigh\u201d, \u201cmain\u201d, and \u201cbaseline\u201d profiles. You can specify these with <code>vc_h264:high<\/code>, <code>vc_h264<\/code>, and <code>vc_h264:baseline:3.1<\/code> respectively.<\/p>\n<h2>Supporting Multiple Formats on the Web<\/h2>\n<p>When dealing with different devices that have differing support for the various codecs and formats, it\u2019s important to make sure as many of them work as possible to be certain that your users can view your content. Thankfully <code>&lt;video&gt;<\/code> elements on the web support this through sources.<\/p>\n<p>If we create a video element with multiple sources, the browser will work from top to bottom; looking for the first compatible source it can playback and start loading from there. The browser tells if a source will work by checking the <code>type<\/code> attribute value.<\/p>\n<p>As you can see below, we have three sources listed in order from most efficient to least efficient. The <code>type<\/code> is just a hint for the browser to know which source to choose. The URLs for each source should have the correct parameters corresponding to the format being requested.<\/p>\n<pre class=\"js-syntax-highlighted\" aria-describedby=\"shcb-language-1\" data-shcb-language-name=\"HTML, XML\" data-shcb-language-slug=\"xml\"><span><code class=\"hljs language-xml shcb-wrap-lines\"><span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">video<\/span> <span class=\"hljs-attr\">controls<\/span>&gt;<\/span>\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">source<\/span>\n    <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"https:\/\/res.cloudinary.com\/demo\/video\/upload\/q_auto,vc_h265,w_1280\/docs\/walking_talking.mp4\"<\/span>\n    <span class=\"hljs-attr\">type<\/span>=<span class=\"hljs-string\">\"video\/mp4; codecs=hvc1\"<\/span>\n  \/&gt;<\/span>\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">source<\/span>\n    <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"https:\/\/res.cloudinary.com\/demo\/video\/upload\/q_auto,vc_vp9,w_1280\/docs\/walking_talking.webm\"<\/span>\n    <span class=\"hljs-attr\">type<\/span>=<span class=\"hljs-string\">\"video\/webm; codecs=vp9\"<\/span>\n  \/&gt;<\/span>\n  <span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">source<\/span>\n    <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"https:\/\/res.cloudinary.com\/demo\/video\/upload\/q_auto,vc_h264:high,w_1280\/docs\/walking_talking.mp4\"<\/span>\n    <span class=\"hljs-attr\">type<\/span>=<span class=\"hljs-string\">\"video\/mp4\"<\/span>\n  \/&gt;<\/span>\n<span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">video<\/span>&gt;<\/span>\n<\/code><\/span><small class=\"shcb-language\" id=\"shcb-language-1\"><span class=\"shcb-language__label\">Code language:<\/span> <span class=\"shcb-language__name\">HTML, XML<\/span> <span class=\"shcb-language__paren\">(<\/span><span class=\"shcb-language__slug\">xml<\/span><span class=\"shcb-language__paren\">)<\/span><\/small><\/pre>\n<p>If your browser supports H265 and HVC1, the first source should play. If that one is not supported, it will fall back to WebM and vp9, then to MP4 and H264. If you\u2019re curious about what formats are supported on what browsers and devices, please use <a href=\"https:\/\/caniuse.com\/?search=video%20format\">this reference<\/a>.<\/p>\n<p>For example, at the time of writing this article, H265 is fully supported on Safari, partially supported on Chrome and Edge, depending on the operating system, and unsupported on Firefox unless you enable an experimental flag.<\/p>\n<h2>Conclusion<\/h2>\n<p>Cloudinary offers powerful and flexible features that allow you to serve your video content to as many devices as possible while doing so as efficiently as possible. If you want to know more about what <a href=\"https:\/\/cloudinary.com\/products\/video\">Cloudinary Video<\/a> has to offer, then I recommend reading the full documentation, specifically the <a href=\"https:\/\/cloudinary.com\/documentation\/video_optimization\">Video Optimization<\/a> and <a href=\"https:\/\/cloudinary.com\/documentation\/video_manipulation_and_delivery\">Video Transformation<\/a> pages.<\/p>\n<\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":87,"featured_media":33584,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_cloudinary_featured_overwrite":false,"footnotes":""},"categories":[1],"tags":[227,303,304],"class_list":["post-33561","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-uncategorized","tag-performance-optimization","tag-video","tag-video-transformation"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.6 (Yoast SEO v26.9) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Optimize Your Videos With Cloudinary URL Transformations<\/title>\n<meta name=\"description\" content=\"Use Cloudinary&#039;s URL transformations to optimize the delivery of your video content and ensure a smooth playback experience for your users.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Optimize Video for the Web Using Cloudinary\" \/>\n<meta property=\"og:description\" content=\"Use Cloudinary&#039;s URL transformations to optimize the delivery of your video content and ensure a smooth playback experience for your users.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary\" \/>\n<meta property=\"og:site_name\" content=\"Cloudinary Blog\" \/>\n<meta property=\"article:published_time\" content=\"2024-04-16T14:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-16T21:26:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/v1712343923\/optimized_video-blog\/optimized_video-blog-jpg?_i=AA\" \/>\n\t<meta property=\"og:image:width\" content=\"2000\" \/>\n\t<meta property=\"og:image:height\" content=\"1100\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"melindapham\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"NewsArticle\",\"@id\":\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#article\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary\"},\"author\":{\"name\":\"melindapham\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/0d5ad601e4c3b5be89245dfb14be42d9\"},\"headline\":\"How to Optimize Video for the Web Using Cloudinary\",\"datePublished\":\"2024-04-16T14:00:00+00:00\",\"dateModified\":\"2025-04-16T21:26:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary\"},\"wordCount\":9,\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1712343923\/optimized_video-blog\/optimized_video-blog.jpg?_i=AA\",\"keywords\":[\"Performance Optimization\",\"Video\",\"Video Transformation\"],\"inLanguage\":\"en-US\",\"copyrightYear\":\"2024\",\"copyrightHolder\":{\"@id\":\"https:\/\/cloudinary.com\/#organization\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary\",\"url\":\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary\",\"name\":\"Optimize Your Videos With Cloudinary URL Transformations\",\"isPartOf\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#primaryimage\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#primaryimage\"},\"thumbnailUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1712343923\/optimized_video-blog\/optimized_video-blog.jpg?_i=AA\",\"datePublished\":\"2024-04-16T14:00:00+00:00\",\"dateModified\":\"2025-04-16T21:26:09+00:00\",\"description\":\"Use Cloudinary's URL transformations to optimize the delivery of your video content and ensure a smooth playback experience for your users.\",\"breadcrumb\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#primaryimage\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1712343923\/optimized_video-blog\/optimized_video-blog.jpg?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1712343923\/optimized_video-blog\/optimized_video-blog.jpg?_i=AA\",\"width\":2000,\"height\":1100},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/cloudinary.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Optimize Video for the Web Using Cloudinary\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#website\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"name\":\"Cloudinary Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/cloudinary.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#organization\",\"name\":\"Cloudinary Blog\",\"url\":\"https:\/\/cloudinary.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"contentUrl\":\"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA\",\"width\":312,\"height\":60,\"caption\":\"Cloudinary Blog\"},\"image\":{\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/0d5ad601e4c3b5be89245dfb14be42d9\",\"name\":\"melindapham\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e6f989fa97fe94be61596259d8629c3df65aec4c7da5c0000f90d810f313d4f4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e6f989fa97fe94be61596259d8629c3df65aec4c7da5c0000f90d810f313d4f4?s=96&d=mm&r=g\",\"caption\":\"melindapham\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Optimize Your Videos With Cloudinary URL Transformations","description":"Use Cloudinary's URL transformations to optimize the delivery of your video content and ensure a smooth playback experience for your users.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary","og_locale":"en_US","og_type":"article","og_title":"How to Optimize Video for the Web Using Cloudinary","og_description":"Use Cloudinary's URL transformations to optimize the delivery of your video content and ensure a smooth playback experience for your users.","og_url":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary","og_site_name":"Cloudinary Blog","article_published_time":"2024-04-16T14:00:00+00:00","article_modified_time":"2025-04-16T21:26:09+00:00","og_image":[{"width":2000,"height":1100,"url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/v1712343923\/optimized_video-blog\/optimized_video-blog-jpg?_i=AA","type":"image\/jpeg"}],"author":"melindapham","twitter_card":"summary_large_image","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"NewsArticle","@id":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#article","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary"},"author":{"name":"melindapham","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/0d5ad601e4c3b5be89245dfb14be42d9"},"headline":"How to Optimize Video for the Web Using Cloudinary","datePublished":"2024-04-16T14:00:00+00:00","dateModified":"2025-04-16T21:26:09+00:00","mainEntityOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary"},"wordCount":9,"publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1712343923\/optimized_video-blog\/optimized_video-blog.jpg?_i=AA","keywords":["Performance Optimization","Video","Video Transformation"],"inLanguage":"en-US","copyrightYear":"2024","copyrightHolder":{"@id":"https:\/\/cloudinary.com\/#organization"}},{"@type":"WebPage","@id":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary","url":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary","name":"Optimize Your Videos With Cloudinary URL Transformations","isPartOf":{"@id":"https:\/\/cloudinary.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#primaryimage"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#primaryimage"},"thumbnailUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1712343923\/optimized_video-blog\/optimized_video-blog.jpg?_i=AA","datePublished":"2024-04-16T14:00:00+00:00","dateModified":"2025-04-16T21:26:09+00:00","description":"Use Cloudinary's URL transformations to optimize the delivery of your video content and ensure a smooth playback experience for your users.","breadcrumb":{"@id":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#primaryimage","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1712343923\/optimized_video-blog\/optimized_video-blog.jpg?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1712343923\/optimized_video-blog\/optimized_video-blog.jpg?_i=AA","width":2000,"height":1100},{"@type":"BreadcrumbList","@id":"https:\/\/cloudinary.com\/blog\/optimize-video-web-using-cloudinary#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/cloudinary.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Optimize Video for the Web Using Cloudinary"}]},{"@type":"WebSite","@id":"https:\/\/cloudinary.com\/blog\/#website","url":"https:\/\/cloudinary.com\/blog\/","name":"Cloudinary Blog","description":"","publisher":{"@id":"https:\/\/cloudinary.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/cloudinary.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/cloudinary.com\/blog\/#organization","name":"Cloudinary Blog","url":"https:\/\/cloudinary.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","contentUrl":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1649718331\/Web_Assets\/blog\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877\/cloudinary_logo_for_white_bg_1937437aa7_19374666c7_193742f877.png?_i=AA","width":312,"height":60,"caption":"Cloudinary Blog"},"image":{"@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/0d5ad601e4c3b5be89245dfb14be42d9","name":"melindapham","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/cloudinary.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e6f989fa97fe94be61596259d8629c3df65aec4c7da5c0000f90d810f313d4f4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e6f989fa97fe94be61596259d8629c3df65aec4c7da5c0000f90d810f313d4f4?s=96&d=mm&r=g","caption":"melindapham"}}]}},"jetpack_featured_media_url":"https:\/\/res.cloudinary.com\/cloudinary-marketing\/images\/f_auto,q_auto\/v1712343923\/optimized_video-blog\/optimized_video-blog.jpg?_i=AA","_links":{"self":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/33561","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/users\/87"}],"replies":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/comments?post=33561"}],"version-history":[{"count":25,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/33561\/revisions"}],"predecessor-version":[{"id":37455,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/posts\/33561\/revisions\/37455"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media\/33584"}],"wp:attachment":[{"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/media?parent=33561"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/categories?post=33561"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cloudinary.com\/blog\/wp-json\/wp\/v2\/tags?post=33561"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}