{"id":259,"date":"2013-02-06T00:00:00","date_gmt":"2013-02-06T05:00:00","guid":{"rendered":"http:\/\/sproutvideo.wpengine.com\/?p=259"},"modified":"2022-01-27T14:04:59","modified_gmt":"2022-01-27T19:04:59","slug":"how-to-make-your-videos-responsive","status":"publish","type":"post","link":"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html","title":{"rendered":"How To Make Your Videos Responsive"},"content":{"rendered":"<p><em>Update: SproutVideo supports <a href=\"https:\/\/sproutvideo.com\/help\/articles\/40-how_to_customize_the_embed_code_for_your_video\" target=\"_blank\" rel=\"noopener noreferrer\">responsive video embed codes<\/a> out-of-the-box. Now, you can ensure your videos will resize automatically without touching a line of code on the page.<\/em><\/p>\n<p>If you\u2019re in the process of building a responsive website or looking to add video to an already responsive website, here is a quick guide on how to make sure your videos resize as seamlessly as the rest of your site.<\/p>\n<p><!--more--><\/p>\n<h3 id=\"the-problem\">The Problem<\/h3>\n<p>Why do images resize fluidly and maintain their aspect ratio in responsive layouts, while videos using iframe or object embed codes do not? Since images have a defined width and height, browsers are able to calculate, and maintain, their aspect ratio when resizing them.<\/p>\n<p>Iframe and object elements, on the other hand, have no native width and height that a browser can use to calculate an aspect ratio. This can lead to some frustrating behavior when embedding a video in a responsive layout.<\/p>\n<h3 id=\"the-solution---intrinsic-aspect-ratios\">The Solution: Intrinsic Aspect Ratios<\/h3>\n<p>The solution to this problem is to tell the browser what the proper aspect ratio should be for the video in the iframe or object element. This way, the browser will be able to maintain that aspect ratio when resizing the video in a responsive layout.<\/p>\n<h4 id=\"how-it-works\">How it works<\/h4>\n<p>To set up this \u201c<a href=\"https:\/\/alistapart.com\/article\/creating-intrinsic-ratios-for-video\">intrinsic ratio<\/a>\u201d you simply need to create a box with the proper aspect ratio, place the embedded video in that box, and have it stretch to fit that box.<\/p>\n<p>The <code>padding-bottom<\/code> css property is what allows us to define the aspect ratio for the box in which the video will be placed. By setting the <code>padding-bottom<\/code> property to a percentage of the <strong>width<\/strong> of the containing element, we are able to create an intrinsic aspect ratio for that box.<\/p>\n<p>Once the aspect ratio is set up, we just need to set our video embed code to take up the full width and height of the box we just created.<\/p>\n<h4 id=\"an-example\">An example<\/h4>\n<div class=\"highlight\">\n<pre><code class=\"html\"><span class=\"nt\">&lt;style&gt;<\/span>\r\n\t<span class=\"nc\">.videoWrapper<\/span> <span class=\"p\">{<\/span>\r\n\t    <span class=\"k\">position<\/span><span class=\"o\">:<\/span> <span class=\"k\">relative<\/span><span class=\"p\">;<\/span>\r\n\t    <span class=\"k\">padding-bottom<\/span><span class=\"o\">:<\/span> <span class=\"m\">56<\/span><span class=\"o\">.<\/span><span class=\"m\">25<\/span><span class=\"o\">%<\/span><span class=\"p\">;<\/span>\r\n\t    <span class=\"k\">height<\/span><span class=\"o\">:<\/span> <span class=\"m\">0<\/span><span class=\"p\">;<\/span>\r\n\t<span class=\"p\">}<\/span>\r\n\r\n\t<span class=\"nc\">.videoWrapper<\/span> <span class=\"nt\">iframe<\/span><span class=\"o\">,<\/span>\r\n\t<span class=\"nc\">.videoWrapper<\/span> <span class=\"nt\">embed<\/span><span class=\"o\">,<\/span>\r\n\t<span class=\"nc\">.videoWrapper<\/span> <span class=\"nt\">object<\/span> <span class=\"p\">{<\/span>\r\n\t    <span class=\"k\">position<\/span><span class=\"o\">:<\/span> <span class=\"k\">absolute<\/span><span class=\"p\">;<\/span>\r\n\t    <span class=\"k\">width<\/span><span class=\"o\">:<\/span> <span class=\"m\">100<\/span><span class=\"o\">%<\/span><span class=\"p\">;<\/span>\r\n\t    <span class=\"k\">height<\/span><span class=\"o\">:<\/span> <span class=\"m\">100<\/span><span class=\"o\">%<\/span><span class=\"p\">;<\/span>\r\n\t    <span class=\"k\">left<\/span><span class=\"o\">:<\/span> <span class=\"m\">0<\/span><span class=\"p\">;<\/span>\r\n\t    <span class=\"k\">top<\/span><span class=\"o\">:<\/span> <span class=\"m\">0<\/span><span class=\"p\">;<\/span>\r\n\t<span class=\"p\">}<\/span>\r\n<span class=\"nt\">&lt;\/style&gt;<\/span>\r\n<span class=\"nt\">&lt;div<\/span> <span class=\"na\">class=<\/span><span class=\"s\">\"videoWrapper\"<\/span><span class=\"nt\">&gt;<\/span>\r\n\t<span class=\"nt\">&lt;iframe<\/span> <span class=\"na\">class=<\/span><span class=\"s\">'sproutvideo-player'<\/span> <span class=\"na\">type=<\/span><span class=\"s\">'text\/html'<\/span> <span class=\"na\">src=<\/span><span class=\"s\">'http:\/\/videos.sproutvideo.com\/embed\/e898d2b5111be3c860\/546cd1548010aaeb?type=sd'<\/span> <span class=\"na\">width=<\/span><span class=\"s\">'630'<\/span> <span class=\"na\">height=<\/span><span class=\"s\">'354'<\/span> <span class=\"na\">frameborder=<\/span><span class=\"s\">'0'<\/span><span class=\"nt\">&gt;&lt;\/iframe&gt;<\/span>\r\n<span class=\"nt\">&lt;\/div&gt;<\/span>\r\n<\/code><\/pre>\n<\/div>\n<p><a href=\"http:\/\/s3.amazonaws.com\/sproutvideo-examples\/responsive.html\" target=\"_blank\" rel=\"noopener noreferrer\">See it in action<\/a> (Try resizing the browser window!)<\/p>\n<h4 id=\"explanation\">Explanation<\/h4>\n<p>In this example, the <code>.videoWrapper<\/code> sets the <code>padding-bottom<\/code> property to <code>56.25%<\/code>. This sets up a 16:9 aspect ratio for that div (9\/16 = 56.25%). Then, the SproutVideo iframe embed code is placed within this box and set up to take 100% of it\u2019s width and 100% of it\u2019s height.<\/p>\n<h3 id=\"tips\">Tips<\/h3>\n<ul>\n<li>You can use different <code>padding-bottom<\/code> percentages if your video has a different aspect ratio. Set it to 75% if the video is 4:3, for instance.<\/li>\n<li>If you need some extra room for a player\u2019s controls (like YouTube for instance), you can add a <code>padding-top<\/code> property to the .videoWrapper class. YouTube\u2019s player chrome is 25px tall so the <code>padding-top<\/code> should be set to 25px.<\/li>\n<li>If all of this is too much work, you can use a great jQuery plugin called <a href=\"http:\/\/fitvidsjs.com\/\">FitVid.js<\/a> to take care of automatically wrapping your videos in a responsive container with an intrinsic aspect ratio and adding the needed CSS. If you\u2019re using FitVid.js with SproutVideo, make sure to add the following custom selector when initializing the plugin:<\/li>\n<\/ul>\n<div class=\"highlight\">\n<pre><code class=\"js\"><span class=\"nx\">$<\/span><span class=\"p\">(<\/span><span class=\"s2\">\"#thing-with-videos\"<\/span><span class=\"p\">).<\/span><span class=\"nx\">fitVids<\/span><span class=\"p\">({<\/span>\r\n    <span class=\"nx\">customSelector<\/span><span class=\"o\">:<\/span> <span class=\"s2\">\"iframe[src*='videos.sproutvideo.com']\"<\/span><span class=\"p\">});<\/span>\r\n<\/code><\/pre>\n<\/div>\n<hr \/>\n<p>Are you using a SproutVideo video in a responsive layout? Leave us URL in the comments. We\u2019d love to see it!<\/p>\n","protected":false},"excerpt":{"rendered":"<p><span class=\"rt-reading-time\" style=\"display: block;\"><span class=\"rt-label rt-prefix\"><\/span> <span class=\"rt-time\">2<\/span> <span class=\"rt-label rt-postfix\">MIN TO READ<\/span><\/span> Update: SproutVideo supports responsive video embed codes out-of-the-box. Now, you can ensure your videos will resize automatically without touching a line of code on the page. If you\u2019re in the process of building a responsive website or looking to add video to an already responsive website, here is a quick guide on how to make sure your videos resize as&#8230;<\/p>\n","protected":false},"author":14,"featured_media":4551,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"inline_featured_image":false,"_eb_attr":""},"categories":[26],"tags":[],"feature":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v18.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Make Your Videos Responsive | SproutVideo<\/title>\n<meta name=\"description\" content=\"Update: SproutVideo supports responsive video embed codes out-of-the-box. Now, you can ensure your videos will resize automatically without touching a\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Make Your Videos Responsive | SproutVideo\" \/>\n<meta property=\"og:description\" content=\"Update: SproutVideo supports responsive video embed codes out-of-the-box. Now, you can ensure your videos will resize automatically without touching a\" \/>\n<meta property=\"og:url\" content=\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html\" \/>\n<meta property=\"og:site_name\" content=\"SproutVideo\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/SproutVideo\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/SproutVideo\" \/>\n<meta property=\"article:published_time\" content=\"2013-02-06T05:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-01-27T19:04:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/d9pfvpeevxz0y.cloudfront.net\/blog\/wp-content\/uploads\/2013\/02\/Blog_020613.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1320\" \/>\n\t<meta property=\"og:image:height\" content=\"740\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/sproutvideo\" \/>\n<meta name=\"twitter:site\" content=\"@SproutVideo\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Adam Podolnick\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Organization\",\"@id\":\"https:\/\/sproutvideo.com\/blog\/#organization\",\"name\":\"SproutVideo\",\"url\":\"https:\/\/sproutvideo.com\/blog\/\",\"sameAs\":[\"https:\/\/www.facebook.com\/SproutVideo\",\"https:\/\/www.instagram.com\/sproutvideo\",\"https:\/\/www.linkedin.com\/company\/sproutvideo\",\"https:\/\/www.youtube.com\/sproutvideo\",\"https:\/\/www.pinterest.com\/sproutvideo\",\"https:\/\/twitter.com\/SproutVideo\"],\"logo\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/sproutvideo.com\/blog\/#logo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/d9pfvpeevxz0y.cloudfront.net\/blog\/wp-content\/uploads\/2021\/07\/logo-mark_new.png\",\"contentUrl\":\"https:\/\/d9pfvpeevxz0y.cloudfront.net\/blog\/wp-content\/uploads\/2021\/07\/logo-mark_new.png\",\"width\":250,\"height\":318,\"caption\":\"SproutVideo\"},\"image\":{\"@id\":\"https:\/\/sproutvideo.com\/blog\/#logo\"}},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/sproutvideo.com\/blog\/#website\",\"url\":\"https:\/\/sproutvideo.com\/blog\/\",\"name\":\"SproutVideo\",\"description\":\"Video hosting for business\",\"publisher\":{\"@id\":\"https:\/\/sproutvideo.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/sproutvideo.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#primaryimage\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/d9pfvpeevxz0y.cloudfront.net\/blog\/wp-content\/uploads\/2013\/02\/Blog_020613.jpg\",\"contentUrl\":\"https:\/\/d9pfvpeevxz0y.cloudfront.net\/blog\/wp-content\/uploads\/2013\/02\/Blog_020613.jpg\",\"width\":1320,\"height\":740},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#webpage\",\"url\":\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html\",\"name\":\"How To Make Your Videos Responsive | SproutVideo\",\"isPartOf\":{\"@id\":\"https:\/\/sproutvideo.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#primaryimage\"},\"datePublished\":\"2013-02-06T05:00:00+00:00\",\"dateModified\":\"2022-01-27T19:04:59+00:00\",\"description\":\"Update: SproutVideo supports responsive video embed codes out-of-the-box. Now, you can ensure your videos will resize automatically without touching a\",\"breadcrumb\":{\"@id\":\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/sproutvideo.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How To Make Your Videos Responsive\"}]},{\"@type\":\"Article\",\"@id\":\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#webpage\"},\"author\":{\"@id\":\"https:\/\/sproutvideo.com\/blog\/#\/schema\/person\/fea843ff3a81aa73a8dadcb95ac57878\"},\"headline\":\"How To Make Your Videos Responsive\",\"datePublished\":\"2013-02-06T05:00:00+00:00\",\"dateModified\":\"2022-01-27T19:04:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#webpage\"},\"wordCount\":521,\"publisher\":{\"@id\":\"https:\/\/sproutvideo.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/d9pfvpeevxz0y.cloudfront.net\/blog\/wp-content\/uploads\/2013\/02\/Blog_020613.jpg\",\"articleSection\":[\"How-Tos\"],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/sproutvideo.com\/blog\/#\/schema\/person\/fea843ff3a81aa73a8dadcb95ac57878\",\"name\":\"Adam Podolnick\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\/\/sproutvideo.com\/blog\/#personlogo\",\"inLanguage\":\"en-US\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1f1e751f9ca651c4baafa90779b900e3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1f1e751f9ca651c4baafa90779b900e3?s=96&d=mm&r=g\",\"caption\":\"Adam Podolnick\"},\"description\":\"Adam is the Founder and CEO of SproutVideo.\",\"sameAs\":[\"http:\/\/sproutvideo.wpengine.com\",\"https:\/\/www.facebook.com\/SproutVideo\",\"https:\/\/www.instagram.com\/sproutvideo\/\",\"https:\/\/www.linkedin.com\/company\/sproutvideo\",\"https:\/\/twitter.com\/https:\/\/twitter.com\/sproutvideo\"],\"url\":\"https:\/\/sproutvideo.com\/blog\/author\/sproutvideo\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Make Your Videos Responsive | SproutVideo","description":"Update: SproutVideo supports responsive video embed codes out-of-the-box. Now, you can ensure your videos will resize automatically without touching a","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:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html","og_locale":"en_US","og_type":"article","og_title":"How To Make Your Videos Responsive | SproutVideo","og_description":"Update: SproutVideo supports responsive video embed codes out-of-the-box. Now, you can ensure your videos will resize automatically without touching a","og_url":"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html","og_site_name":"SproutVideo","article_publisher":"https:\/\/www.facebook.com\/SproutVideo","article_author":"https:\/\/www.facebook.com\/SproutVideo","article_published_time":"2013-02-06T05:00:00+00:00","article_modified_time":"2022-01-27T19:04:59+00:00","og_image":[{"width":1320,"height":740,"url":"https:\/\/d9pfvpeevxz0y.cloudfront.net\/blog\/wp-content\/uploads\/2013\/02\/Blog_020613.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/sproutvideo","twitter_site":"@SproutVideo","twitter_misc":{"Written by":"Adam Podolnick","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/sproutvideo.com\/blog\/#organization","name":"SproutVideo","url":"https:\/\/sproutvideo.com\/blog\/","sameAs":["https:\/\/www.facebook.com\/SproutVideo","https:\/\/www.instagram.com\/sproutvideo","https:\/\/www.linkedin.com\/company\/sproutvideo","https:\/\/www.youtube.com\/sproutvideo","https:\/\/www.pinterest.com\/sproutvideo","https:\/\/twitter.com\/SproutVideo"],"logo":{"@type":"ImageObject","@id":"https:\/\/sproutvideo.com\/blog\/#logo","inLanguage":"en-US","url":"https:\/\/d9pfvpeevxz0y.cloudfront.net\/blog\/wp-content\/uploads\/2021\/07\/logo-mark_new.png","contentUrl":"https:\/\/d9pfvpeevxz0y.cloudfront.net\/blog\/wp-content\/uploads\/2021\/07\/logo-mark_new.png","width":250,"height":318,"caption":"SproutVideo"},"image":{"@id":"https:\/\/sproutvideo.com\/blog\/#logo"}},{"@type":"WebSite","@id":"https:\/\/sproutvideo.com\/blog\/#website","url":"https:\/\/sproutvideo.com\/blog\/","name":"SproutVideo","description":"Video hosting for business","publisher":{"@id":"https:\/\/sproutvideo.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/sproutvideo.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#primaryimage","inLanguage":"en-US","url":"https:\/\/d9pfvpeevxz0y.cloudfront.net\/blog\/wp-content\/uploads\/2013\/02\/Blog_020613.jpg","contentUrl":"https:\/\/d9pfvpeevxz0y.cloudfront.net\/blog\/wp-content\/uploads\/2013\/02\/Blog_020613.jpg","width":1320,"height":740},{"@type":"WebPage","@id":"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#webpage","url":"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html","name":"How To Make Your Videos Responsive | SproutVideo","isPartOf":{"@id":"https:\/\/sproutvideo.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#primaryimage"},"datePublished":"2013-02-06T05:00:00+00:00","dateModified":"2022-01-27T19:04:59+00:00","description":"Update: SproutVideo supports responsive video embed codes out-of-the-box. Now, you can ensure your videos will resize automatically without touching a","breadcrumb":{"@id":"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/sproutvideo.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How To Make Your Videos Responsive"}]},{"@type":"Article","@id":"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#article","isPartOf":{"@id":"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#webpage"},"author":{"@id":"https:\/\/sproutvideo.com\/blog\/#\/schema\/person\/fea843ff3a81aa73a8dadcb95ac57878"},"headline":"How To Make Your Videos Responsive","datePublished":"2013-02-06T05:00:00+00:00","dateModified":"2022-01-27T19:04:59+00:00","mainEntityOfPage":{"@id":"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#webpage"},"wordCount":521,"publisher":{"@id":"https:\/\/sproutvideo.com\/blog\/#organization"},"image":{"@id":"https:\/\/sproutvideo.com\/blog\/how-to-make-your-videos-responsive.html#primaryimage"},"thumbnailUrl":"https:\/\/d9pfvpeevxz0y.cloudfront.net\/blog\/wp-content\/uploads\/2013\/02\/Blog_020613.jpg","articleSection":["How-Tos"],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/sproutvideo.com\/blog\/#\/schema\/person\/fea843ff3a81aa73a8dadcb95ac57878","name":"Adam Podolnick","image":{"@type":"ImageObject","@id":"https:\/\/sproutvideo.com\/blog\/#personlogo","inLanguage":"en-US","url":"https:\/\/secure.gravatar.com\/avatar\/1f1e751f9ca651c4baafa90779b900e3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1f1e751f9ca651c4baafa90779b900e3?s=96&d=mm&r=g","caption":"Adam Podolnick"},"description":"Adam is the Founder and CEO of SproutVideo.","sameAs":["http:\/\/sproutvideo.wpengine.com","https:\/\/www.facebook.com\/SproutVideo","https:\/\/www.instagram.com\/sproutvideo\/","https:\/\/www.linkedin.com\/company\/sproutvideo","https:\/\/twitter.com\/https:\/\/twitter.com\/sproutvideo"],"url":"https:\/\/sproutvideo.com\/blog\/author\/sproutvideo"}]}},"acf":{"square_featured_image":null,"has_related_video_page":null,"related_video":null,"video_category":null},"_links":{"self":[{"href":"https:\/\/sproutvideo.com\/blog\/wp-json\/wp\/v2\/posts\/259"}],"collection":[{"href":"https:\/\/sproutvideo.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sproutvideo.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sproutvideo.com\/blog\/wp-json\/wp\/v2\/users\/14"}],"replies":[{"embeddable":true,"href":"https:\/\/sproutvideo.com\/blog\/wp-json\/wp\/v2\/comments?post=259"}],"version-history":[{"count":4,"href":"https:\/\/sproutvideo.com\/blog\/wp-json\/wp\/v2\/posts\/259\/revisions"}],"predecessor-version":[{"id":8135,"href":"https:\/\/sproutvideo.com\/blog\/wp-json\/wp\/v2\/posts\/259\/revisions\/8135"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/sproutvideo.com\/blog\/wp-json\/wp\/v2\/media\/4551"}],"wp:attachment":[{"href":"https:\/\/sproutvideo.com\/blog\/wp-json\/wp\/v2\/media?parent=259"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sproutvideo.com\/blog\/wp-json\/wp\/v2\/categories?post=259"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sproutvideo.com\/blog\/wp-json\/wp\/v2\/tags?post=259"},{"taxonomy":"feature","embeddable":true,"href":"https:\/\/sproutvideo.com\/blog\/wp-json\/wp\/v2\/feature?post=259"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}