{"id":5210,"date":"2026-07-27T15:30:38","date_gmt":"2026-07-27T15:30:38","guid":{"rendered":"https:\/\/yamuparkoti.com\/?p=5210"},"modified":"2026-07-27T15:30:38","modified_gmt":"2026-07-27T15:30:38","slug":"invideo-ryokin","status":"publish","type":"post","link":"https:\/\/yamuparkoti.com\/ja\/invideo-pricing\/","title":{"rendered":"InVideo Pricing 2026: Every Plan, Credit and Real Cost Per Video \ud83d\udcb8"},"content":{"rendered":"<p><!--yamlisten:start--><\/p>\n<style id=\"yamlisten-css\">.yamlisten{--lg:#76B900;display:block;margin:0 0 26px;padding:14px 16px;border:1px solid rgba(255,255,255,.14);border-radius:12px;background:rgba(255,255,255,.03)}.yamlisten .ylrow{display:flex;align-items:center;gap:12px;flex-wrap:wrap}.yamlisten button{font:inherit;cursor:pointer;border:0;background:none;color:inherit}.ylplay{display:inline-flex!important;align-items:center;gap:9px;background:var(--lg)!important;background-image:none!important;color:#0d0d0d!important;font-size:15px!important;font-weight:700!important;border-radius:999px!important;padding:10px 20px!important;box-shadow:none!important;transition:filter .18s,transform .18s}.ylplay:hover{filter:brightness(1.08);transform:translateY(-1px)}.ylplay svg{width:16px;height:16px;fill:currentColor;display:block}.ylstop{display:none;align-items:center;justify-content:center;width:36px;height:36px;border-radius:999px!important;border:1px solid rgba(255,255,255,.22)!important;color:inherit!important;opacity:.85}.ylstop.on{display:inline-flex}.ylstop:hover{opacity:1;border-color:rgba(255,255,255,.4)!important}.ylstop svg{width:12px;height:12px;fill:currentColor;display:block}.ylmeta{font-size:13px;opacity:.7;line-height:1.4}.ylrate{margin-left:auto;display:inline-flex;align-items:center;gap:6px;font-size:13px;opacity:.75}.ylrate select{font:inherit;font-size:13px;padding:3px 6px;border-radius:7px;border:1px solid rgba(255,255,255,.18);background:rgba(0,0,0,.25);color:inherit}.ylbar{height:3px;border-radius:3px;background:rgba(255,255,255,.12);margin-top:12px;overflow:hidden;display:none}.ylbar.on{display:block}.ylbar i{display:block;height:100%;width:0;background:var(--lg);transition:width .25s linear}.ylhint{display:block;font-size:12px;opacity:.55;margin-top:9px;line-height:1.5}.yl-reading{background:rgba(118,185,0,.14);border-radius:4px;box-shadow:0 0 0 3px rgba(118,185,0,.14)}.yl-click{cursor:pointer}@media(max-width:600px){.ylrate{margin-left:0;width:100%}}<\/style>\n<div class=\"yamlisten\" id=\"yamlisten\">\n<div class=\"ylrow\"><button class=\"ylplay\" id=\"ylplay\" type=\"button\" aria-live=\"polite\"><svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><path d=\"M8 5v14l11-7z\"\/><\/svg><span id=\"ylplaytxt\">Listen to this article<\/span><\/button><button class=\"ylstop\" id=\"ylstop\" type=\"button\" aria-label=\"Stop\"><svg viewBox=\"0 0 24 24\" aria-hidden=\"true\"><path d=\"M6 6h12v12H6z\"\/><\/svg><\/button><span class=\"ylmeta\" id=\"ylmeta\"><\/span><span class=\"ylrate\"><label for=\"ylrate\">Speed<\/label><select id=\"ylrate\"><option value=\"0.85\">0.85x<\/option><option value=\"1\" selected>1x<\/option><option value=\"1.25\">1.25x<\/option><option value=\"1.5\">1.5x<\/option><option value=\"1.75\">1.75x<\/option><\/select><\/span><\/div>\n<div class=\"ylbar\" id=\"ylbar\"><i id=\"ylbarfill\"><\/i><\/div>\n<p><span class=\"ylhint\" id=\"ylhint\">Plays in the language you are reading. Tap any paragraph to start from there.<\/span><\/div>\n<p> <script id=\"yamlisten-js\"> (function(){ function ylinit(){ var synth = window.speechSynthesis; var box = document.getElementById('yamlisten'); if(!box){ return; } var btn = document.getElementById('ylplay'); var btnTxt = document.getElementById('ylplaytxt'); var stopBtn = document.getElementById('ylstop'); var meta = document.getElementById('ylmeta'); var note = document.getElementById('ylhint'); var bar = document.getElementById('ylbar'); var fill = document.getElementById('ylbarfill'); var rateSel = document.getElementById('ylrate');  if(!synth){ box.style.display='none'; return; }  var scope = box.parentNode; var nodes = scope.querySelectorAll('p, h2, h3, li'); var blocks = []; for(var i=0;i<nodes.length;i++){ var n = nodes[i]; if(box.contains(n)){ continue; } if(n.closest('.yamlisten')){ continue; } if(n.querySelector('script, style')){ continue; } if(n.tagName === 'SCRIPT'){ continue; } var txt = (n.innerText || '').replace(\/\\s+\/g,' ').trim(); if(txt.length < 3){ continue; } blocks.push({el:n, text:txt}); } if(!blocks.length){ box.style.display='none'; return; }  function pageLang(){ var l = document.documentElement.getAttribute('lang'); if(!l){ l = 'en'; } return l; } function scoreVoice(v){ var n = (v.name || '').toLowerCase(); var s = 0; if(\/natural|neural|wavenet|premium|enhanced\/.test(n)){ s += 100; } if(\/online\/.test(n)){ s += 60; } if(\/google\/.test(n)){ s += 45; } if(\/siri\/.test(n)){ s += 45; } if(v.localService === false){ s += 30; } if(\/desktop|espeak|compact|classic|novelty\/.test(n)){ s -= 90; } if(v.default){ s += 5; } return s; } var voiceCache = {}; function pickVoice(lang){ if(voiceCache[lang] !== undefined){ return voiceCache[lang]; } var vs = synth.getVoices(); if(!vs.length){ return null; } var want = lang.toLowerCase().replace('_','-'); var base = want.split('-')[0]; var exact = [], loose = []; for(var i=0;i<vs.length;i++){ var vl = (vs[i].lang || '').toLowerCase().replace('_','-'); if(vl === want){ exact.push(vs[i]); } if(vl.split('-')[0] === base){ loose.push(vs[i]); } } var pool = exact.length ? exact : loose; if(!pool.length){ voiceCache[lang] = null; return null; } pool.sort(function(a,b){ return scoreVoice(b) - scoreVoice(a); }); voiceCache[lang] = pool[0]; return pool[0]; } function splitText(t){ var parts = t.match(\/[^.!?\u3002\uff01\uff1f]+[.!?\u3002\uff01\uff1f]*\\s*\/g); if(!parts){ parts = [t]; } var out = [], buf = ''; for(var i=0;i<parts.length;i++){ var piece = parts[i]; if((buf + piece).length > 220){ if(buf.trim()){ out.push(buf.trim()); } buf = ''; while(piece.length > 220){ var cut = piece.lastIndexOf(' ', 220); if(cut < 80){ cut = 220; } out.push(piece.slice(0, cut).trim()); piece = piece.slice(cut); } buf = piece; } else { buf = buf + piece; } } if(buf.trim()){ out.push(buf.trim()); } return out; }  var chunks = []; for(var c=0;c<blocks.length;c++){ var pieces = splitText(blocks[c].text); for(var q=0;q<pieces.length;q++){ chunks.push({el:blocks[c].el, text:pieces[q], b:c}); } } function chunkOfBlock(n){ for(var i=0;i<chunks.length;i++){ if(chunks[i].b === n){ return i; } } return 0; } var idx = 0, playing = false, paused = false, current = null; var totalChars = 0; for(var b=0;b<chunks.length;b++){ totalChars += chunks[b].text.length; } var doneChars = 0;  var words = Math.round(totalChars\/5.4); var mins = Math.max(1, Math.round(words\/180)); meta.textContent = '~' + mins + ' min listen';  function setIcon(kind){ var svg = btn.querySelector('svg path'); if(kind === 'pause'){ svg.setAttribute('d','M6 5h4v14H6zm8 0h4v14h-4z'); return; } svg.setAttribute('d','M8 5v14l11-7z'); } function clearHighlight(){ for(var i=0;i<blocks.length;i++){ blocks[i].el.classList.remove('yl-reading'); } } function reset(){ playing=false; paused=false; current=null; idx=0; doneChars=0; clearHighlight(); setIcon('play'); btnTxt.textContent='Listen to this article'; stopBtn.classList.remove('on'); bar.classList.remove('on'); fill.style.width='0%'; }  function speakFrom(start){ synth.cancel(); idx = start; doneChars = 0; for(var i=0;i<start;i++){ doneChars += chunks[i].text.length; } playing = true; paused = false; setIcon('pause'); btnTxt.textContent='Pause'; stopBtn.classList.add('on'); bar.classList.add('on'); next(); }  function next(){ if(idx >= chunks.length){ reset(); return; } clearHighlight(); var blk = chunks[idx]; blk.el.classList.add('yl-reading'); var u = new SpeechSynthesisUtterance(blk.text); var lang = pageLang(); u.lang = lang; var v = pickVoice(lang); if(v){ u.voice = v; } u.rate = parseFloat(rateSel.value) || 1; u.onend = function(){ if(!playing){ return; } doneChars += blk.text.length; fill.style.width = Math.min(100, Math.round(doneChars\/totalChars*100)) + '%'; idx = idx + 1; next(); }; u.onerror = function(){ if(!playing){ return; } idx = idx + 1; next(); }; current = u; synth.speak(u); }  btn.addEventListener('click', function(){ if(!playing){ speakFrom(0); return; } if(paused){ synth.resume(); paused=false; setIcon('pause'); btnTxt.textContent='Pause'; return; } synth.pause(); paused=true; setIcon('play'); btnTxt.textContent='Resume'; }); stopBtn.addEventListener('click', function(){ synth.cancel(); reset(); }); rateSel.addEventListener('change', function(){ if(!playing){ return; } speakFrom(idx); });  for(var k=0;k<blocks.length;k++){ (function(n){ blocks[n].el.classList.add('yl-click'); blocks[n].el.addEventListener('click', function(e){ if(e.target.closest('a')){ return; } speakFrom(chunkOfBlock(n)); }); })(k); }  if(synth.onvoiceschanged !== undefined){ synth.onvoiceschanged = function(){ voiceCache = {}; var lang = pageLang(); var v = pickVoice(lang); if(!v){ note.textContent = 'Your device has no voice installed for this language yet, so playback may fall back to a default voice.'; return; } if(scoreVoice(v) < 30){ note.textContent = 'Using the best voice on your device. For a more natural voice, add one in your system speech settings.'; } }; } setInterval(function(){ if(!playing){ return; } if(paused){ return; } synth.resume(); }, 8000); window.addEventListener('beforeunload', function(){ synth.cancel(); }); } if(document.readyState === 'loading'){ document.addEventListener('DOMContentLoaded', ylinit); } else { ylinit(); } })(); <\/script><!--yamlisten:end--><\/p>\n<p>Most InVideo pricing articles you will find are wrong.<\/p>\n<p>Not slightly wrong. Completely wrong. They still quote a &quot;Business plan at $30&quot; and an &quot;Unlimited plan at $60,&quot; with limits measured in export minutes. That pricing does not exist anymore. InVideo rebuilt its entire commercial model around <strong>credits<\/strong>, and the plan names changed too.<\/p>\n<p>I checked invideo.io directly on <strong>27 July 2026<\/strong> and pulled the live numbers. This guide is built on those figures, not on a three-year-old screenshot someone copied from a competitor.<\/p>\n<p>Here is what you actually need to decide: InVideo now sells you <em>generation capacity<\/em>, not editing time. That single change flips how you should choose a plan. Pick wrong and you either burn through credits in week two or pay for a bucket you never empty.<\/p>\n<p>Let me show you the real math.<\/p>\n<p style=\"text-align:center;margin:28px 0;\"><a href=\"https:\/\/invideo.sjv.io\/c\/5691594\/894632\/12258\" rel=\"sponsored nofollow noopener\" style=\"display:inline-block;background:linear-gradient(90deg,#8b5cf6,#ec4899);color:#fff;font-weight:800;padding:16px 40px;border-radius:12px;text-decoration:none;font-size:18px;box-shadow:0 6px 20px rgba(139,92,246,.4);\" target=\"_blank\">\ud83c\udfac Get 25% off InVideo plans \u2192<\/a><\/p>\n<blockquote>\n<p><strong>Affiliate disclosure:<\/strong> the InVideo links on this page are affiliate links. If you buy through one, I earn a commission at no extra cost to you. It does not change the numbers below, and it has not stopped me writing the &quot;don&#39;t buy this plan&quot; section further down. Every figure here came from InVideo&#39;s own pricing page on 27 July 2026.<\/p>\n<\/blockquote>\n<h2>\ud83e\uddfe Quick answer: InVideo pricing at a glance<\/h2>\n<table>\n<thead>\n<tr>\n<th>Plan<\/th>\n<th>Monthly<\/th>\n<th>Billed yearly<\/th>\n<th>Credits \/ month<\/th>\n<th>AI avatars<\/th>\n<th>Storage<\/th>\n<th>iStock assets<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>Plus<\/strong><\/td>\n<td>$17<\/td>\n<td>$200<\/td>\n<td>75<\/td>\n<td>4<\/td>\n<td>20 GB<\/td>\n<td>100<\/td>\n<\/tr>\n<tr>\n<td><strong>Max<\/strong> \u2b50 most popular<\/td>\n<td>$85<\/td>\n<td>$1,000<\/td>\n<td>390<\/td>\n<td>16<\/td>\n<td>100 GB<\/td>\n<td>200<\/td>\n<\/tr>\n<tr>\n<td><strong>Generative<\/strong> \ud83d\udc8e best value<\/td>\n<td>$170<\/td>\n<td>$2,000<\/td>\n<td>800<\/td>\n<td>40<\/td>\n<td>2 TB<\/td>\n<td>1000<\/td>\n<\/tr>\n<tr>\n<td><strong>Elite<\/strong><\/td>\n<td>$900<\/td>\n<td>$10,800<\/td>\n<td>4,250<\/td>\n<td>\u2014<\/td>\n<td>\u2014<\/td>\n<td>\u2014<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Every paid plan includes <strong>unlimited exports with no watermark<\/strong>, access to <strong>all AI models<\/strong>, all AI workflows, and AI video trends. Annual billing saves <strong>15%<\/strong> on Plus, Max and Generative, and <strong>10%<\/strong> on Elite.<\/p>\n<p><strong>The short version:<\/strong> most individual creators should buy <strong>Plus at $17<\/strong>. Most working professionals land on <strong>Max<\/strong>. <strong>Generative<\/strong> only makes sense at daily production volume. <strong>Elite<\/strong> is a studio product.<\/p>\n<p>Now the part nobody explains properly.<\/p>\n<h2>\ud83c\udf9f\ufe0f What an InVideo credit actually is<\/h2>\n<p>This is the single most misunderstood thing about InVideo&#39;s 2026 pricing.<\/p>\n<p>A credit is not a minute of video. It is not an export. It is a unit of <strong>AI generation<\/strong>. When you ask InVideo to generate a clip, an image, a voice or an avatar, you spend credits. When you export the finished video, you spend nothing.<\/p>\n<p>InVideo publishes the conversion right on the pricing page. Their own example: <strong>75 credits is enough for roughly 300 Nano banana pro generations, or 600 Nano banana 2 generations.<\/strong><\/p>\n<p>That gives us a usable ratio.<\/p>\n<table>\n<thead>\n<tr>\n<th>Plan<\/th>\n<th>Credits<\/th>\n<th>\u2248 Nano banana pro generations<\/th>\n<th>\u2248 Nano banana 2 generations<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Plus<\/td>\n<td>75<\/td>\n<td>300<\/td>\n<td>600<\/td>\n<\/tr>\n<tr>\n<td>Max<\/td>\n<td>390<\/td>\n<td>1,560<\/td>\n<td>3,120<\/td>\n<\/tr>\n<tr>\n<td>Generative<\/td>\n<td>800<\/td>\n<td>3,200<\/td>\n<td>6,400<\/td>\n<\/tr>\n<tr>\n<td>Elite<\/td>\n<td>4,250<\/td>\n<td>17,000<\/td>\n<td>34,000<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>So a credit buys about <strong>four<\/strong> generations on the cheaper model, and about <strong>two<\/strong> on the premium one.<\/p>\n<p>Heavier models cost more per generation. The pricing page names <strong>Seedance 2.0<\/strong>, <strong>Veo 3.1<\/strong> and <strong>Kling 3<\/strong> as included on every paid tier, and those are premium video models. Generating a cinematic clip with Veo costs meaningfully more than generating a still image.<\/p>\n<p>That is the honest caveat: your real credit burn depends entirely on which models you lean on.<\/p>\n<figure style=\"margin:32px 0;text-align:center;\">\n<svg viewBox=\"0 0 760 300\" role=\"img\" aria-label=\"Bar chart comparing monthly credits across InVideo plans\" style=\"max-width:100%;height:auto;background:#0c0b14;border-radius:12px;padding:18px\">\n  <text x=\"24\" y=\"30\" fill=\"#c4b5fd\" font-family=\"system-ui,sans-serif\" font-size=\"15\" font-weight=\"700\">MONTHLY CREDITS BY PLAN<\/text>\n  <g font-family=\"system-ui,sans-serif\" font-size=\"13\" fill=\"#e9e6f5\">\n    <rect x=\"120\" y=\"56\" width=\"16\" height=\"26\" fill=\"#8b5cf6\" rx=\"3\"\/>\n    <text x=\"24\" y=\"74\">Plus<\/text><text x=\"146\" y=\"74\">75<\/text>\n    <rect x=\"120\" y=\"106\" width=\"82\" height=\"26\" fill=\"#a78bfa\" rx=\"3\"\/>\n    <text x=\"24\" y=\"124\">Max<\/text><text x=\"212\" y=\"124\">390<\/text>\n    <rect x=\"120\" y=\"156\" width=\"168\" height=\"26\" fill=\"#c084fc\" rx=\"3\"\/>\n    <text x=\"24\" y=\"174\">Generative<\/text><text x=\"298\" y=\"174\">800<\/text>\n    <rect x=\"120\" y=\"206\" width=\"600\" height=\"26\" fill=\"#ec4899\" rx=\"3\"\/>\n    <text x=\"24\" y=\"224\">Elite<\/text><text x=\"640\" y=\"224\" fill=\"#fff\">4,250<\/text>\n  <\/g>\n  <text x=\"24\" y=\"272\" fill=\"#8e88a8\" font-family=\"system-ui,sans-serif\" font-size=\"12\">Source: invideo.io pricing page, 27 July 2026. Bars scaled to Elite = 4,250 credits.<\/text>\n<\/svg><figcaption style=\"font-size:14px;opacity:.7;margin-top:8px\">Credit allocation is not linear with price \u2014 that gap is where the real decision lives.<\/figcaption><\/figure>\n<h2>\ud83d\udcca The cost-per-credit table nobody publishes<\/h2>\n<p>Headline prices tell you almost nothing. Cost <em>per credit<\/em> tells you everything.<\/p>\n<table>\n<thead>\n<tr>\n<th>Plan<\/th>\n<th>Yearly cost<\/th>\n<th>Credits \/ year<\/th>\n<th>Cost per credit<\/th>\n<th>vs Plus<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>Plus<\/strong><\/td>\n<td>$200<\/td>\n<td>900<\/td>\n<td><strong>$0.222<\/strong><\/td>\n<td>baseline<\/td>\n<\/tr>\n<tr>\n<td><strong>Max<\/strong><\/td>\n<td>$1,000<\/td>\n<td>4,680<\/td>\n<td><strong>$0.214<\/strong><\/td>\n<td>4% cheaper<\/td>\n<\/tr>\n<tr>\n<td><strong>Generative<\/strong><\/td>\n<td>$2,000<\/td>\n<td>9,600<\/td>\n<td><strong>$0.208<\/strong><\/td>\n<td>6% cheaper<\/td>\n<\/tr>\n<tr>\n<td><strong>Elite<\/strong><\/td>\n<td>$10,800<\/td>\n<td>51,000<\/td>\n<td><strong>$0.212<\/strong><\/td>\n<td>5% cheaper<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Look at that column again. It barely moves.<\/p>\n<p>This is genuinely unusual. On most SaaS ladders, the top tier is dramatically cheaper per unit \u2014 that is the whole incentive to upgrade. Here the spread between the cheapest and most expensive credit is about <strong>6%<\/strong>.<\/p>\n<p><strong>What that means for you is simple.<\/strong> You are not upgrading to save money per generation. You are upgrading to buy <em>capacity<\/em>, <em>concurrency<\/em>, <em>storage<\/em> and <em>avatars<\/em>. If your only reason to consider Max is &quot;better value per credit,&quot; the numbers do not support you.<\/p>\n<p>Buy the plan that matches the volume you will actually produce. Nothing more.<\/p>\n<figure style=\"margin:32px 0;text-align:center;\">\n<svg viewBox=\"0 0 760 260\" role=\"img\" aria-label=\"Chart showing cost per credit is nearly flat across all four InVideo plans\" style=\"max-width:100%;height:auto;background:#0c0b14;border-radius:12px;padding:18px\">\n  <text x=\"24\" y=\"28\" fill=\"#c4b5fd\" font-family=\"system-ui,sans-serif\" font-size=\"15\" font-weight=\"700\">COST PER CREDIT (ANNUAL BILLING)<\/text>\n  <line x1=\"90\" y1=\"200\" x2=\"730\" y2=\"200\" stroke=\"#3a3550\" stroke-width=\"1\"\/>\n  <line x1=\"90\" y1=\"60\" x2=\"90\" y2=\"200\" stroke=\"#3a3550\" stroke-width=\"1\"\/>\n  <text x=\"24\" y=\"66\" fill=\"#8e88a8\" font-family=\"system-ui,sans-serif\" font-size=\"12\">$0.25<\/text>\n  <text x=\"24\" y=\"204\" fill=\"#8e88a8\" font-family=\"system-ui,sans-serif\" font-size=\"12\">$0.00<\/text>\n  <g font-family=\"system-ui,sans-serif\" font-size=\"13\">\n    <rect x=\"140\" y=\"76\" width=\"90\" height=\"124\" fill=\"#8b5cf6\" rx=\"4\"\/>\n    <text x=\"150\" y=\"70\" fill=\"#e9e6f5\">$0.222<\/text><text x=\"156\" y=\"222\" fill=\"#e9e6f5\">Plus<\/text>\n    <rect x=\"290\" y=\"80\" width=\"90\" height=\"120\" fill=\"#a78bfa\" rx=\"4\"\/>\n    <text x=\"300\" y=\"74\" fill=\"#e9e6f5\">$0.214<\/text><text x=\"310\" y=\"222\" fill=\"#e9e6f5\">Max<\/text>\n    <rect x=\"440\" y=\"84\" width=\"90\" height=\"116\" fill=\"#c084fc\" rx=\"4\"\/>\n    <text x=\"450\" y=\"78\" fill=\"#e9e6f5\">$0.208<\/text><text x=\"443\" y=\"222\" fill=\"#e9e6f5\">Generative<\/text>\n    <rect x=\"590\" y=\"82\" width=\"90\" height=\"118\" fill=\"#ec4899\" rx=\"4\"\/>\n    <text x=\"600\" y=\"76\" fill=\"#e9e6f5\">$0.212<\/text><text x=\"612\" y=\"222\" fill=\"#e9e6f5\">Elite<\/text>\n  <\/g>\n  <text x=\"24\" y=\"246\" fill=\"#8e88a8\" font-family=\"system-ui,sans-serif\" font-size=\"12\">Only a 6% spread from cheapest to dearest. Upgrading buys capacity, not efficiency.<\/text>\n<\/svg><figcaption style=\"font-size:14px;opacity:.7;margin-top:8px\">A near-flat line. That is the most important chart on this page.<\/figcaption><\/figure>\n<h2>\ud83d\udcb5 Real cost per finished video<\/h2>\n<p>Credits are abstract. Videos are not. So let us convert.<\/p>\n<p>Take a 30 to 60 second social clip. Realistically that costs <strong>6 to 15 generations<\/strong>, once you count the takes you throw away. Nobody nails a shot first time. I certainly do not.<\/p>\n<p>Call it <strong>10 generations per finished video<\/strong> as a working average on the cheaper model.<\/p>\n<table>\n<thead>\n<tr>\n<th>Plan<\/th>\n<th>Credits\/mo<\/th>\n<th>\u2248 Generations\/mo<\/th>\n<th>\u2248 Finished videos\/mo<\/th>\n<th>Effective cost per video<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Plus<\/td>\n<td>75<\/td>\n<td>300<\/td>\n<td>~30<\/td>\n<td><strong>$0.56<\/strong><\/td>\n<\/tr>\n<tr>\n<td>Max<\/td>\n<td>390<\/td>\n<td>1,560<\/td>\n<td>~156<\/td>\n<td><strong>$0.53<\/strong><\/td>\n<\/tr>\n<tr>\n<td>Generative<\/td>\n<td>800<\/td>\n<td>3,200<\/td>\n<td>~320<\/td>\n<td><strong>$0.52<\/strong><\/td>\n<\/tr>\n<tr>\n<td>Elite<\/td>\n<td>4,250<\/td>\n<td>17,000<\/td>\n<td>~1,700<\/td>\n<td><strong>$0.53<\/strong><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Roughly <strong>50 cents a video<\/strong> on annual billing, at every tier.<\/p>\n<p>Now compare that to what you would otherwise pay. A freelance editor for a simple social clip starts around $30. A stock footage licence alone can run $20 to $80 per clip. A voice actor for a 60-second read is $50 and up.<\/p>\n<p>That is the actual argument for InVideo, and it is a strong one. Not &quot;it is cheap software.&quot; It is that the <em>marginal<\/em> cost of your next video collapses to near zero.<\/p>\n<p><strong>The catch is the ceiling.<\/strong> If you need 40 videos this month and you are on Plus, you run dry around video 30. There is no partial credit. The month simply stops.<\/p>\n<h2>\ud83e\uddee Which plan should you actually buy?<\/h2>\n<p>Forget the marketing labels. Match your monthly output.<\/p>\n<table>\n<thead>\n<tr>\n<th>Your situation<\/th>\n<th>Videos \/ month<\/th>\n<th>Buy<\/th>\n<th>Yearly<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Testing the platform, occasional posts<\/td>\n<td>Under 25<\/td>\n<td><strong>Plus<\/strong><\/td>\n<td>$200<\/td>\n<\/tr>\n<tr>\n<td>Consistent creator, 3\u20134 posts weekly<\/td>\n<td>25\u2013140<\/td>\n<td><strong>Max<\/strong><\/td>\n<td>$1,000<\/td>\n<\/tr>\n<tr>\n<td>Daily publishing, multiple channels or clients<\/td>\n<td>140\u2013300<\/td>\n<td><strong>Generative<\/strong><\/td>\n<td>$2,000<\/td>\n<\/tr>\n<tr>\n<td>Studio, agency roster, high-volume production<\/td>\n<td>300+<\/td>\n<td><strong>Elite<\/strong><\/td>\n<td>$10,800<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>Start one tier below where you think you belong.<\/strong><\/p>\n<p>Almost everyone overestimates how much they will produce. I have watched it happen repeatedly, and I have done it myself with other tools. You buy for the ambitious version of your schedule, then reality arrives.<\/p>\n<p>Upgrading mid-stream is easy. Getting a refund on eleven unused months is not.<\/p>\n<figure style=\"margin:32px 0;text-align:center;\">\n<svg viewBox=\"0 0 700 330\" role=\"img\" aria-label=\"Pie chart showing which InVideo plan suits which share of typical buyers\" style=\"max-width:100%;height:auto;background:#0c0b14;border-radius:12px;padding:18px\">\n  <text x=\"24\" y=\"28\" fill=\"#c4b5fd\" font-family=\"system-ui,sans-serif\" font-size=\"15\" font-weight=\"700\">WHO EACH PLAN IS ACTUALLY FOR<\/text>\n  <circle cx=\"190\" cy=\"180\" r=\"105\" fill=\"#8b5cf6\"\/>\n  <path d=\"M190 180 L190 75 A105 105 0 0 1 288 216 Z\" fill=\"#a78bfa\"\/>\n  <path d=\"M190 180 L288 216 A105 105 0 0 1 168 283 Z\" fill=\"#c084fc\"\/>\n  <path d=\"M190 180 L168 283 A105 105 0 0 1 140 273 Z\" fill=\"#ec4899\"\/>\n  <g font-family=\"system-ui,sans-serif\" font-size=\"14\" fill=\"#e9e6f5\">\n    <rect x=\"380\" y=\"92\" width=\"14\" height=\"14\" fill=\"#8b5cf6\" rx=\"3\"\/><text x=\"404\" y=\"104\">Plus \u2014 hobbyists and testers<\/text>\n    <rect x=\"380\" y=\"132\" width=\"14\" height=\"14\" fill=\"#a78bfa\" rx=\"3\"\/><text x=\"404\" y=\"144\">Max \u2014 working creators<\/text>\n    <rect x=\"380\" y=\"172\" width=\"14\" height=\"14\" fill=\"#c084fc\" rx=\"3\"\/><text x=\"404\" y=\"184\">Generative \u2014 daily producers<\/text>\n    <rect x=\"380\" y=\"212\" width=\"14\" height=\"14\" fill=\"#ec4899\" rx=\"3\"\/><text x=\"404\" y=\"224\">Elite \u2014 studios and agencies<\/text>\n  <\/g>\n  <text x=\"24\" y=\"312\" fill=\"#8e88a8\" font-family=\"system-ui,sans-serif\" font-size=\"12\">Illustrative split of typical buyers. Most people belong in the largest slice.<\/text>\n<\/svg><br \/>\n<\/figure>\n<h2>\ud83d\udcc5 Annual vs monthly: the 15% question<\/h2>\n<p>InVideo gives <strong>15% off<\/strong> for annual billing on Plus, Max and Generative. Elite gets <strong>10%<\/strong>.<\/p>\n<table>\n<thead>\n<tr>\n<th>Plan<\/th>\n<th>Monthly rate<\/th>\n<th>Paid monthly for 12<\/th>\n<th>Paid annually<\/th>\n<th>You save<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td>Plus<\/td>\n<td>$17<\/td>\n<td>$204<\/td>\n<td>$200<\/td>\n<td>$4<\/td>\n<\/tr>\n<tr>\n<td>Max<\/td>\n<td>$85<\/td>\n<td>$1,020<\/td>\n<td>$1,000<\/td>\n<td>$20<\/td>\n<\/tr>\n<tr>\n<td>Generative<\/td>\n<td>$170<\/td>\n<td>$2,040<\/td>\n<td>$2,000<\/td>\n<td>$40<\/td>\n<\/tr>\n<tr>\n<td>Elite<\/td>\n<td>$900<\/td>\n<td>$10,800<\/td>\n<td>$10,800<\/td>\n<td>\u2014<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>Be careful here, because this is where the marketing gets slippery.<\/p>\n<p>The <strong>$17, $85 and $170 figures are already the annual-billing rate<\/strong>, shown as a monthly equivalent. The pricing page states it plainly underneath: <em>billed $200 yearly<\/em>, <em>billed $1,000 yearly<\/em>, <em>billed $2,000 yearly<\/em>.<\/p>\n<p>So the saving is not a bonus on top of those numbers. It is already baked in.<\/p>\n<p><strong>My honest recommendation:<\/strong> pay monthly for the first month. Genuinely use it. Push your real workload through it and watch your credit burn. Then switch to annual once you know which tier fits.<\/p>\n<p>Locking a year of Generative before you have produced a single video is how people end up with $2,000 of unused capacity.<\/p>\n<h2>\ud83c\udfa5 Watch the plan comparison<\/h2>\n<p>I walked through all four tiers on camera, including where each one runs out:<\/p>\n<p style=\"text-align:center;margin:26px 0;\"><iframe width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/WlkfHE2BkrI\" title=\"InVideo AI Pricing 2026: Plus vs Max vs Generative vs Elite\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen style=\"max-width:100%;border-radius:12px\"><\/iframe><\/p>\n<p>More breakdowns like this on my channel: <strong><a href=\"https:\/\/www.youtube.com\/@uparkoti\" target=\"_blank\" rel=\"noopener\">youtube.com\/@uparkoti<\/a><\/strong>.<\/p>\n<h2>\ud83e\udde0 What you get on every paid plan<\/h2>\n<p>This part is genuinely good, and it is easy to miss because it sits in small print.<\/p>\n<p><strong>Every paid tier<\/strong> \u2014 including the $17 one \u2014 includes:<\/p>\n<ul>\n<li><strong>Unlimited exports, no watermark.<\/strong> No per-export charge, no branding on your work.<\/li>\n<li><strong>Access to all AI models.<\/strong> Seedance 2.0, Veo 3.1, Kling 3 and the rest. The $17 plan is not locked out of the good models.<\/li>\n<li><strong>All AI workflows<\/strong> and AI video trends.<\/li>\n<li><strong>AI avatars and voice clones.<\/strong> Four on Plus, scaling to 40 on Generative.<\/li>\n<\/ul>\n<p>That last point matters more than the credit count for some people. Voice cloning and avatars are usually gated behind expensive tiers on competing platforms.<\/p>\n<p><strong>What scales with price<\/strong> is capacity, not capability: credits, concurrency, storage and iStock allowance.<\/p>\n<p>Concurrency deserves a note. Plus is described as &quot;limited,&quot; Max gets <strong>2\u00d7 Plus<\/strong>, Generative gets <strong>10\u00d7 Plus<\/strong>. If you batch-generate \u2014 queueing many shots at once rather than one at a time \u2014 this changes your working day substantially.<\/p>\n<h2>\u2699\ufe0f InVideo AI vs InVideo Studio<\/h2>\n<p>InVideo sells two things, and the naming confuses people constantly.<\/p>\n<p><strong>invideo AI<\/strong> is the agent-driven product. You describe what you want. AI agents pick the model, write the prompt, and generate the shots. Their pitch is that you should not have to become a prompt engineer to make a video.<\/p>\n<p><strong>invideo Studio<\/strong> is the editor. A timeline, layers, and manual control. InVideo describes it as &quot;Premiere Pro with full AI.&quot;<\/p>\n<p>Both sit under the same subscription. You are not choosing between them at checkout.<\/p>\n<p>The 2026 platform adds some genuinely useful things on top:<\/p>\n<ul>\n<li><strong>Agents with long-term project memory<\/strong>, so your clips stay consistent across a project instead of drifting<\/li>\n<li><strong>Multi-shot editing<\/strong> \u2014 change a location, costume or character across many shots without regenerating each one<\/li>\n<li><strong>Multiplayer mode<\/strong> with live cursors for real-time collaboration<\/li>\n<li><strong>Storyboarding<\/strong> from a script or idea<\/li>\n<li><strong>Script writing<\/strong> inside the platform<\/li>\n<li><strong>Custom agents<\/strong> you build yourself<\/li>\n<\/ul>\n<p>That multi-shot editing feature is the one I would highlight. Regenerating thirty clips because you changed your mind about a background is exactly the kind of credit burn that wrecks a budget.<\/p>\n<h2>\ud83d\udeab When you should not buy InVideo<\/h2>\n<p>I would rather you skip this than buy the wrong thing and resent it.<\/p>\n<p><strong>Do not buy InVideo if you only need to trim clips.<\/strong> If your workflow is cutting existing footage, adding captions and exporting, a free editor does that. You would be paying for generation capacity you never touch.<\/p>\n<p><strong>Do not buy Generative or Elite &quot;to be safe.&quot;<\/strong> The cost-per-credit table above proves there is no efficiency gain hiding up there. You would be pre-paying for capacity at essentially the same unit price you would get on Plus.<\/p>\n<p><strong>Do not buy annual on day one.<\/strong> Test your actual burn rate first. One month of monthly billing is cheap insurance against a year of regret.<\/p>\n<p><strong>Do not buy it expecting broadcast-grade output every time.<\/strong> AI video in 2026 is impressive and improving fast. It is not a replacement for a film crew when the shot genuinely matters.<\/p>\n<p><strong>Be cautious if you need strict brand consistency.<\/strong> The agent memory helps a great deal here, but you should test it against your own brand guidelines during your first month rather than assuming.<\/p>\n<h2>\ud83d\udcb0 How to pay less<\/h2>\n<p>A few of these are obvious. One is not.<\/p>\n<p><strong>1. Take the 25% discount.<\/strong> There is a standing offer on all plans. On Generative that is worth $500 a year, which is not a rounding error.<\/p>\n<p style=\"text-align:center;margin:26px 0;\"><a href=\"https:\/\/invideo.sjv.io\/c\/5691594\/894632\/12258\" rel=\"sponsored nofollow noopener\" style=\"display:inline-block;background:linear-gradient(90deg,#8b5cf6,#ec4899);color:#fff;font-weight:800;padding:15px 36px;border-radius:12px;text-decoration:none;font-size:17px;\" target=\"_blank\">\ud83d\udcb8 Claim 25% off InVideo \u2192<\/a><\/p>\n<p><strong>2. Use the coupon code.<\/strong> <code>InVideoOffer25<\/code> applies the same 25% at checkout if the link discount does not auto-apply.<\/p>\n<p><strong>3. Buy annual \u2014 but only after month one.<\/strong> The 15% is real. Just earn the right to commit first.<\/p>\n<p><strong>4. Students get a dedicated offer.<\/strong> If you are studying, there is a separate student programme. Do not pay retail without checking it.<\/p>\n<p><strong>5. Wait for Black Friday if your need is not urgent.<\/strong> Seasonal ad-template bundles appear late in the year. If you are buying in October, waiting six weeks may be worth it.<\/p>\n<p><strong>6. Downgrade rather than cancel.<\/strong> If a quiet quarter arrives, dropping to Plus keeps your projects, storage and avatars alive for $17. Cancelling entirely is usually the more expensive mistake.<\/p>\n<h2>\ud83d\udcc9 The subscription-stacking trap<\/h2>\n<p>One broader warning, because it applies well beyond InVideo.<\/p>\n<p>Creative tools have quietly become a stacked monthly bill. A video tool. A stock library. A voice tool. A thumbnail designer. A scheduler. Each looks small in isolation. Together they are a salary line.<\/p>\n<p>I investigated exactly this and found people underestimate their own subscription spend by around <strong>two and a half times<\/strong>:<\/p>\n<p style=\"text-align:center;margin:26px 0;\"><iframe width=\"560\" height=\"315\" src=\"https:\/\/www.youtube.com\/embed\/TmC_-53-h0M\" title=\"You Think You Spend $86 on Subscriptions. It's Actually $219.\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen style=\"max-width:100%;border-radius:12px\"><\/iframe><\/p>\n<p>The relevant question is not &quot;can I afford $17 a month.&quot; It is &quot;what does this replace?&quot;<\/p>\n<p>If InVideo removes a stock subscription, a voiceover cost and some freelance editing, the maths is comfortable. If it becomes the fifth tool in a stack you never audit, it is just another line.<\/p>\n<p>Run that check before you buy. It takes ten minutes and it is the most valuable thing in this article.<\/p>\n<h2>\ud83d\udd2c How to test your real credit burn in week one<\/h2>\n<p>Do not guess your tier. Measure it. This takes about four days and it settles the question permanently.<\/p>\n<p><strong>Day one: make one video end to end.<\/strong> Not a test. A real one you would actually publish. Note your credit balance before you start and after you export.<\/p>\n<p>That single number is your baseline. If one finished video cost you 9 credits, Plus gives you roughly eight a month. If it cost 3, Plus gives you twenty-five.<\/p>\n<p><strong>Day two: make a deliberately awkward one.<\/strong> Pick a subject with a specific look, a particular character, or a brand colour you must hit. Count the regenerations.<\/p>\n<p>This is the number that ruins budgets. Easy videos are cheap. The ones where you keep saying &quot;almost, but not quite&quot; are where credits vanish.<\/p>\n<p><strong>Day three: test the multi-shot edit.<\/strong> Build a short sequence, then change something global \u2014 the location, the lighting, a costume. See whether InVideo&#39;s agents apply it across shots or regenerate everything from scratch.<\/p>\n<p>If it edits rather than regenerates, your effective capacity is far higher than the credit number suggests. If it regenerates, plan for more headroom.<\/p>\n<p><strong>Day four: do the arithmetic.<\/strong> Multiply your average cost per video by your realistic monthly output. Add 30% for the bad days. That is your credit requirement.<\/p>\n<p>Then buy the smallest plan that clears it.<\/p>\n<p>I would rather you spend $17 and four days learning this than $2,000 assuming it.<\/p>\n<h2>\ud83c\udd9a How the price compares to the alternatives<\/h2>\n<p>Context matters, so here is roughly where InVideo sits in 2026.<\/p>\n<table>\n<thead>\n<tr>\n<th>Tool<\/th>\n<th>Entry price<\/th>\n<th>Model<\/th>\n<\/tr>\n<\/thead>\n<tbody>\n<tr>\n<td><strong>InVideo Plus<\/strong><\/td>\n<td>$17\/mo<\/td>\n<td>Credits, all AI models included<\/td>\n<\/tr>\n<tr>\n<td>Canva Pro<\/td>\n<td>~$15\/mo<\/td>\n<td>Design-first, lighter AI video<\/td>\n<\/tr>\n<tr>\n<td>CapCut Pro<\/td>\n<td>~$10\/mo<\/td>\n<td>Editor-first, free tier is generous<\/td>\n<\/tr>\n<tr>\n<td>Pictory<\/td>\n<td>~$25\/mo<\/td>\n<td>Text-to-video, minutes-based<\/td>\n<\/tr>\n<tr>\n<td>Synthesia<\/td>\n<td>~$29\/mo<\/td>\n<td>Avatar and presenter video<\/td>\n<\/tr>\n<tr>\n<td>Runway<\/td>\n<td>~$15\/mo<\/td>\n<td>Credit-based generative video<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p>The honest read: InVideo is <strong>not the cheapest entry point<\/strong>, and it does not pretend to be.<\/p>\n<p>What it does differently is bundle the generation models, the editor, the avatars and the collaboration layer under one subscription. Most competitors make you choose a lane \u2014 generation <em>or<\/em> editing, avatars <em>or<\/em> stock.<\/p>\n<p>If you only need one of those lanes, a specialist tool will serve you better and cost less. If you need two or three, InVideo&#39;s bundle starts winning quickly, because the alternative is stacking three subscriptions.<\/p>\n<p>That is the actual decision. Not &quot;is $17 cheap,&quot; but &quot;how many tools does this replace.&quot;<\/p>\n<h2>\u2753 InVideo pricing FAQ<\/h2>\n<p><strong>How much does InVideo cost in 2026?<\/strong><br \/>\nFour plans. Plus is $17 a month billed $200 yearly. Max is $85 a month billed $1,000 yearly. Generative is $170 a month billed $2,000 yearly. Elite is $900 a month billed $10,800 yearly. All include unlimited watermark-free exports.<\/p>\n<p><strong>Does InVideo still have a free plan?<\/strong><br \/>\nInVideo&#39;s public pricing page in July 2026 lists only the four paid tiers. The free and trial position has changed from earlier years, so check the current signup flow before assuming a free tier exists.<\/p>\n<p><strong>What is an InVideo credit?<\/strong><br \/>\nA unit of AI generation, not a minute of video. InVideo states 75 credits covers roughly 300 Nano banana pro generations or 600 Nano banana 2 generations. Exporting costs no credits.<\/p>\n<p><strong>Do unused credits roll over?<\/strong><br \/>\nTreat them as monthly-use-or-lose unless InVideo states otherwise on your plan. Buy for your realistic monthly output, not your best month.<\/p>\n<p><strong>Is InVideo worth $17 a month?<\/strong><br \/>\nFor anyone publishing more than a couple of videos a month, yes. It works out near 50 cents per finished video, against $30 or more for freelance editing. Below that volume, you are paying for capacity you will not use.<\/p>\n<p><strong>Which InVideo plan is best value?<\/strong><br \/>\nCost per credit is almost identical across all four, from $0.208 to $0.222. So &quot;best value&quot; is whichever matches your output. Buy Plus unless you have evidence you will exceed roughly 25 videos a month.<\/p>\n<p><strong>Can I get a discount on InVideo?<\/strong><br \/>\nYes. There is a 25% discount on all plans, and the code <code>InVideoOffer25<\/code> applies the same at checkout. Annual billing adds 15% off, and students have a separate offer.<\/p>\n<p><strong>What is the difference between invideo AI and invideo Studio?<\/strong><br \/>\ninvideo AI is the agent-driven generator that writes prompts and picks models for you. invideo Studio is the manual timeline editor. Both come with the same subscription.<\/p>\n<p><strong>Can I cancel or downgrade anytime?<\/strong><br \/>\nYou can move between tiers. Downgrading to Plus is usually smarter than cancelling, since it keeps your projects, storage and avatars alive for $17 a month.<\/p>\n<h2>\u2705 The verdict<\/h2>\n<p>InVideo&#39;s 2026 pricing is more honest than most AI video platforms, for one specific reason: <strong>it does not paywall the good models.<\/strong><\/p>\n<p>The $17 plan gets Veo 3.1, Kling 3 and Seedance 2.0, the same as the $900 plan. You are throttled on volume, not capability. That is a fairer trade than the industry norm of locking the useful features behind the third tier.<\/p>\n<p>The flat cost-per-credit curve is the other thing worth remembering. There is no clever arbitrage in buying big. Buy the capacity you will genuinely use.<\/p>\n<p><strong>My recommendation for most people: start on Plus and pay monthly for one month.<\/strong> Measure your real credit burn. Then commit annually to whichever tier that month proved you need.<\/p>\n<p>That approach costs you $17 to find out. Guessing costs considerably more.<\/p>\n<p style=\"text-align:center;margin:32px 0;\"><a href=\"https:\/\/invideo.sjv.io\/c\/5691594\/894632\/12258\" rel=\"sponsored nofollow noopener\" style=\"display:inline-block;background:linear-gradient(90deg,#8b5cf6,#ec4899);color:#fff;font-weight:800;padding:17px 44px;border-radius:12px;text-decoration:none;font-size:19px;box-shadow:0 6px 22px rgba(139,92,246,.42);\" target=\"_blank\">\ud83c\udfac Start with 25% off InVideo \u2192<\/a><\/p>\n<hr>\n<p><em>Written by <strong>Yam Bahadur Uparkoti<\/strong>. I review software with the pricing page open and the receipts visible. All InVideo figures on this page were taken from invideo.io on 27 July 2026 \u2014 if they change, this article gets corrected. More video breakdowns on <a href=\"https:\/\/www.youtube.com\/@uparkoti\" target=\"_blank\" rel=\"noopener\">YouTube @uparkoti<\/a>.<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>InVideo pricing 2026 explained: Plus $17, Max $85, Generative $170, Elite $900. Real credit math, cost per video, annual savings and how to get 25% off before you buy.<\/p>","protected":false},"author":1,"featured_media":5201,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_kadence_starter_templates_imported_post":false,"footnotes":""},"categories":[726],"tags":[729,727,731,728,730],"class_list":["post-5210","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-invideo","tag-ai-video","tag-invideo","tag-invideo-ai","tag-invideo-pricing","tag-video-editing-software"],"_links":{"self":[{"href":"https:\/\/yamuparkoti.com\/ja\/wp-json\/wp\/v2\/posts\/5210","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/yamuparkoti.com\/ja\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/yamuparkoti.com\/ja\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/yamuparkoti.com\/ja\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/yamuparkoti.com\/ja\/wp-json\/wp\/v2\/comments?post=5210"}],"version-history":[{"count":1,"href":"https:\/\/yamuparkoti.com\/ja\/wp-json\/wp\/v2\/posts\/5210\/revisions"}],"predecessor-version":[{"id":5211,"href":"https:\/\/yamuparkoti.com\/ja\/wp-json\/wp\/v2\/posts\/5210\/revisions\/5211"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/yamuparkoti.com\/ja\/wp-json\/wp\/v2\/media\/5201"}],"wp:attachment":[{"href":"https:\/\/yamuparkoti.com\/ja\/wp-json\/wp\/v2\/media?parent=5210"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/yamuparkoti.com\/ja\/wp-json\/wp\/v2\/categories?post=5210"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/yamuparkoti.com\/ja\/wp-json\/wp\/v2\/tags?post=5210"}],"curies":[{"name":"\u3046\u30fc\u3093","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}