{"id":5912,"date":"2025-12-26T22:13:56","date_gmt":"2025-12-26T22:13:56","guid":{"rendered":"https:\/\/thumbtube.com\/blog\/?p=5912"},"modified":"2025-12-26T22:23:56","modified_gmt":"2025-12-26T22:23:56","slug":"how-to-automatically-cut-dead-frames-in-after-effects","status":"publish","type":"post","link":"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/","title":{"rendered":"How to Automatically Cut Dead Frames in After Effects"},"content":{"rendered":"<p>When working in Adobe After Effects, efficiency is key. Editors and motion designers often spend hours refining animations, synchronizing audio, and perfecting visual edits. One significant but frequently overlooked issue is the presence of <em>dead frames<\/em> \u2014 frames where nothing animates or changes. These static frames can extend render times, create awkward pacing, or simply waste storage space. Thankfully, there are ways to automatically identify and remove these dead frames, saving precious time and maintaining a smooth workflow.<\/p>\n<h3>TL;DR (Too Long; Didn&#8217;t Read)<\/h3>\n<p>Dead frames in After Effects are non-changing frames that add unnecessary duration to your composition. You can detect and trim these automatically using built-in tools, expressions, or third-party scripts. While After Effects doesn\u2019t have a button labeled &#8220;Cut Dead Frames,&#8221; creative use of markers, expressions, and automation tools like Python or Adobe scripts can achieve this. Learning how to remove dead frames streamlines your project and results in faster renders and better final products.<\/p>\n<h2>What Are Dead Frames?<\/h2>\n<p>Dead frames are sequences in your timeline where there is no visible change between one frame and the next. These can happen when layers are static, keyframes are accidentally extended, or sections of a composition are left unintentionally paused.<\/p>\n<p>They often occur:<\/p>\n<ul>\n<li>At the beginning or end of a scene.<\/li>\n<li>Between two animated sequences.<\/li>\n<li>When placeholders are left in a timeline with no movement.<\/li>\n<\/ul>\n<p>While that may not seem harmful, dead frames can lead to:<\/p>\n<ul>\n<li>Longer rendering times.<\/li>\n<li>Bulky export files.<\/li>\n<li>Viewers perceiving the footage as lagging.<\/li>\n<li>Cluttered project timelines that are harder to manage.<\/li>\n<\/ul>\n<h2>Why After Effects Doesn\u2019t Natively Support Dead Frame Removal<\/h2>\n<p>Adobe After Effects focuses on manual control and customization of your compositions. Since \u2018dead frames\u2019 are a subjective visual problem (for example, a static logo for 3 seconds might be intentional), the software doesn\u2019t automatically flag or remove them. It\u2019s up to you \u2014 the editor or motion designer \u2014 to identify and address them when needed. However, there are clever ways to semi-automate the task using available features and third-party tools.<\/p>\n<h2>Methods to Automatically Cut Dead Frames<\/h2>\n<h3>1. Use Difference Matte Technique<\/h3>\n<p>A widely used trick for identifying dead frames involves using the <strong>\u201cDifference Matte\u201d<\/strong> effect from the Effects and Presets panel. This method helps you determine whether a frame differs from its neighbor visually.<\/p>\n<p>Here&#8217;s how to do it step-by-step:<\/p>\n<ol>\n<li>Duplicate your composition or render your comp and import it back into After Effects.<\/li>\n<li>Place two identical copies of the clip on top of each other.<\/li>\n<li>Offset the top layer by 1 frame so you&#8217;re comparing frame-to-frame.<\/li>\n<li>Apply the \u201cDifference Matte\u201d effect to the top layer.<\/li>\n<li>Precompose the layer and apply the \u201cLevels\u201d effect to amplify differences.<\/li>\n<li>If there is zero difference in RGB values, you\u2019ve identified a dead frame.<\/li>\n<\/ol>\n<p>While not automatic by itself, this method can help visually and programmatically isolate frames that remain static.<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"720\" src=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/black-coated-wire-on-blue-wall-after-effects-timeline-difference-matte-animation-comparison.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/black-coated-wire-on-blue-wall-after-effects-timeline-difference-matte-animation-comparison.jpg 1080w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/black-coated-wire-on-blue-wall-after-effects-timeline-difference-matte-animation-comparison-300x200.jpg 300w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/black-coated-wire-on-blue-wall-after-effects-timeline-difference-matte-animation-comparison-1024x683.jpg 1024w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/black-coated-wire-on-blue-wall-after-effects-timeline-difference-matte-animation-comparison-768x512.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" \/>\n<h3>2. Use the Frame Difference Script or Plugin<\/h3>\n<p>There are scripts developed by the community specifically for spotting and removing dead frames. One popular example is the <strong>Frame Difference Tool<\/strong>, available on platforms like AEScripts. This tool automates much of the process described above by analyzing image differences between consecutive frames and flagging dead zones accordingly.<\/p>\n<p>Benefits of using the script:<\/p>\n<ul>\n<li>Fast scanning through lengthy compositions.<\/li>\n<li>Automatic trimming of frame handles or applying markers.<\/li>\n<li>Optional export or report based on where dead frames occur.<\/li>\n<\/ul>\n<p>Other recognized plugins or toolkits include:<\/p>\n<ul>\n<li><em>Motion Tools Pro<\/em> \u2013 Offers enhancement utilities including clean-up features.<\/li>\n<li><em>pt_TrimPaths<\/em> \u2013 Good for trimming paths and frame-based automation.<\/li>\n<\/ul>\n<h3>3. Use Expressions to Flag Static Frames<\/h3>\n<p>If you prefer working natively without plugins, you can use <strong>expressions<\/strong> creatively to flag dead frames. One way is to track a property (like position or opacity) and check for changes over a number of frames using a temporal sample expression.<\/p>\n<p>Here\u2019s a simplified example expression:<\/p>\n<pre>\nvar prev = position.valueAtTime(time - thisComp.frameDuration, false);\nif (prev == position) {\n  0 \/\/ No change: it's a dead frame marker\n} else {\n  100 \/\/ Something moved\n}\n<\/pre>\n<p>Apply this to an expression control and link it to a Null\u2019s opacity or slider to visualize frame changes over time.<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"720\" src=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting-1.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting-1.jpg 1080w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting-1-300x200.jpg 300w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting-1-1024x683.jpg 1024w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting-1-768x512.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Additional Workflow Enhancements<\/h2>\n<p>To create a fully automated pipeline, combine techniques. Here&#8217;s a more advanced workflow:<\/p>\n<ul>\n<li>Render your composition as a frame sequence (e.g., PNG or JPEG).<\/li>\n<li>Use Python or another tool to compare pixel data between images.<\/li>\n<li>Generate an EDL (Edit Decision List) marking valid segments only.<\/li>\n<li>Reimport the sequence or data to After Effects for trimming.<\/li>\n<\/ul>\n<p>This solution is ideal for large batches of videos from motion templates or motion graphic social media packages where reviewing each asset manually is not scalable.<\/p>\n<h2>Bonus Tip: Use Motion Blur to Avoid Dead Frame Feel<\/h2>\n<p>If fully automated removal isn&#8217;t viable, an effective strategy is to add subtle <strong>motion blur<\/strong>. While this doesn\u2019t eliminate dead frames, it masks their presence by simulating continuity of movement. This is particularly useful in logo stings or kinetic typography pieces, where a sudden stop appears unnatural.<\/p>\n<h2>Final Thoughts<\/h2>\n<p>Although After Effects doesn&#8217;t have a built-in feature to directly \u201cremove dead frames,\u201d you can automate the task with a mix of creativity, scripting, and the right tools. Whether you&#8217;re using Difference Mattes, scripting expressions, or installing plugins, the key is understanding your workflow and selecting an approach that best fits your scale of work.<\/p>\n<p>Removing dead frames leads to smoother animations, shorter compositions, and more professional outputs. You\u2019ll also appreciate the time saved during your rendering and review sessions.<\/p>\n<p>So next time you render and preview your animation, take a moment to ask: are there dead frames silently dragging your masterpiece down? If so, now you know exactly how to hunt them out \u2014 and cut them automatically.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When working in Adobe After Effects, efficiency is key. Editors and motion designers often spend &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"How to Automatically Cut Dead Frames in After Effects\" class=\"read-more button\" href=\"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/#more-5912\" aria-label=\"Read more about How to Automatically Cut Dead Frames in After Effects\">Read More<\/a><\/p>\n","protected":false},"author":78,"featured_media":5927,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[],"class_list":["post-5912","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides","infinite-scroll-item","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-25","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Automatically Cut Dead Frames in After Effects - ThumbTube<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Automatically Cut Dead Frames in After Effects - ThumbTube\" \/>\n<meta property=\"og:description\" content=\"When working in Adobe After Effects, efficiency is key. Editors and motion designers often spend ... Read More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/\" \/>\n<meta property=\"og:site_name\" content=\"ThumbTube\" \/>\n<meta property=\"article:published_time\" content=\"2025-12-26T22:13:56+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-12-26T22:23:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ethan Martinez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ethan Martinez\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/\",\"url\":\"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/\",\"name\":\"How to Automatically Cut Dead Frames in After Effects - ThumbTube\",\"isPartOf\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting.jpg\",\"datePublished\":\"2025-12-26T22:13:56+00:00\",\"dateModified\":\"2025-12-26T22:23:56+00:00\",\"author\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583\"},\"breadcrumb\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/#primaryimage\",\"url\":\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting.jpg\",\"contentUrl\":\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting.jpg\",\"width\":1080,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thumbtube.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Automatically Cut Dead Frames in After Effects\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thumbtube.com\/blog\/#website\",\"url\":\"https:\/\/thumbtube.com\/blog\/\",\"name\":\"ThumbTube\",\"description\":\"Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thumbtube.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583\",\"name\":\"Ethan Martinez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g\",\"caption\":\"Ethan Martinez\"},\"description\":\"I'm Ethan Martinez, a tech writer focused on cloud computing and SaaS solutions. I provide insights into the latest cloud technologies and services to keep readers informed.\",\"url\":\"https:\/\/thumbtube.com\/blog\/author\/ethan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Automatically Cut Dead Frames in After Effects - ThumbTube","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:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/","og_locale":"en_US","og_type":"article","og_title":"How to Automatically Cut Dead Frames in After Effects - ThumbTube","og_description":"When working in Adobe After Effects, efficiency is key. Editors and motion designers often spend ... Read More","og_url":"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/","og_site_name":"ThumbTube","article_published_time":"2025-12-26T22:13:56+00:00","article_modified_time":"2025-12-26T22:23:56+00:00","og_image":[{"width":1080,"height":720,"url":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting.jpg","type":"image\/jpeg"}],"author":"Ethan Martinez","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ethan Martinez","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/","url":"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/","name":"How to Automatically Cut Dead Frames in After Effects - ThumbTube","isPartOf":{"@id":"https:\/\/thumbtube.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/#primaryimage"},"image":{"@id":"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/#primaryimage"},"thumbnailUrl":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting.jpg","datePublished":"2025-12-26T22:13:56+00:00","dateModified":"2025-12-26T22:23:56+00:00","author":{"@id":"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583"},"breadcrumb":{"@id":"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/#primaryimage","url":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting.jpg","contentUrl":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/12\/a-computer-screen-with-a-bunch-of-lines-on-it-after-effects-expressions-editor-timeline-scripting.jpg","width":1080,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/thumbtube.com\/blog\/how-to-automatically-cut-dead-frames-in-after-effects\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thumbtube.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Automatically Cut Dead Frames in After Effects"}]},{"@type":"WebSite","@id":"https:\/\/thumbtube.com\/blog\/#website","url":"https:\/\/thumbtube.com\/blog\/","name":"ThumbTube","description":"Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thumbtube.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583","name":"Ethan Martinez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g","caption":"Ethan Martinez"},"description":"I'm Ethan Martinez, a tech writer focused on cloud computing and SaaS solutions. I provide insights into the latest cloud technologies and services to keep readers informed.","url":"https:\/\/thumbtube.com\/blog\/author\/ethan\/"}]}},"_links":{"self":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts\/5912"}],"collection":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/users\/78"}],"replies":[{"embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/comments?post=5912"}],"version-history":[{"count":1,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts\/5912\/revisions"}],"predecessor-version":[{"id":5936,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts\/5912\/revisions\/5936"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/media\/5927"}],"wp:attachment":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/media?parent=5912"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/categories?post=5912"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/tags?post=5912"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}