{"slug": "seedance-2-5-is-priced-53-above-2-0-per-token-and-its-480p-frame-shrank", "title": "Seedance 2.5 is priced 53% above 2.0 per token, and its 480p frame shrank", "summary": "ByteDance's Seedance 2.5 video generation API, opening August 7, is priced 53% higher per token than 2.0, but a hidden detail in the pricing reveals that 480p output actually renders at a lower resolution (854×480) than 2.0's 864×496, making the per-second cost increase only 46% at 480p. The analysis also shows that 4K tokens are 19.4 times more expensive per frame despite a lower per-token rate, and that reference video input is billed at the same rate as output, with a minimum input duration around four seconds.", "body_md": "Seedance 2.5's API opens on August 7. ByteDance published the pricing ahead of it, and there is a detail in there that will quietly break your cost model if you carry it over from 2.0.\n\nVideo is quoted per second and metered per token:\n\n```\ntokens = (input_video_seconds + output_seconds) × width × height × fps / 1024\n```\n\nfps is fixed at 24. Multiply by the per-million-token rate and that is the bill.\n\nUSD per million tokens:\n\n| Model | No video input | With video input |\n|---|---|---|\n| Seedance 2.5 (480p, 720p) | 10.70 | 6.40 |\n| Seedance 2.0 (480p, 720p) | 7.00 | 4.30 |\n| Seedance 2.0 (1080p) | 7.70 | 4.70 |\n| Seedance 2.0 (4K) | 4.00 | 2.40 |\n\n2.5 costs 52.9% more per token without video input and 48.8% more with it. Only 480p and 720p are published for 2.5. No 1080p, no 4K, and offline inference reads \"not supported yet\".\n\nLook at the 4K row before you move on. It is the cheapest tier per token, 43% below 480p, and it is also the most expensive output on the board, because a 3840×2160 frame carries 19.4 times the pixels of what 480p actually renders. The rate drops 43% while the token count climbs 1940%. Comparing providers by scanning the rate column gets you the wrong answer by roughly a factor of eleven.\n\nThis is not in any release note. It falls out of dividing ByteDance's own worked examples by their own token rates.\n\nTheir published five-second, 16:9, no-reference examples:\n\n| Model | 480p | 720p |\n|---|---|---|\n| Seedance 2.5 | $0.514 ($0.103/s) | $1.156 ($0.231/s) |\n| Seedance 2.0 | $0.352 ($0.070/s) | $0.756 ($0.151/s) |\n\nDivide price by token rate to recover the token count, then by 24/1024 to recover pixels:\n\n``` js\nconst tokens = pricePerVideo / (ratePerMillion / 1e6);\nconst pixels = (tokens / outputSeconds) * (1024 / 24);\n\n// Seedance 2.5, 480p:  0.514 / (10.70/1e6) / 5  =  9,607 tokens/sec\n//                      9,607 * 1024/24          =  409,899 px  ->  ~854 x 480\n// Seedance 2.0, 480p:  0.352 / (7.00/1e6)  / 5  = 10,057 tokens/sec\n//                      10,057 * 1024/24         =  429,105 px  ->  ~873 x 491\n```\n\n720p resolves to 21,600 tokens per second on both versions, which is exactly 1280 × 720. That the same arithmetic lands on a clean, verifiable number at 720p is what makes the 480p result trustworthy instead of a rounding artifact.\n\nSo 2.5 renders 480p at a true 16:9 854 × 480 while 2.0 uses a slightly taller frame. That 4.5% pixel reduction explains a discrepancy that otherwise looks like a pricing error: **480p rises 46% per second while the token rate rises 53%.** At 720p, where the frame is unchanged, the two match exactly.\n\nIf you quote customers per second, your 2.0 conversion factor is wrong on 2.5 by about five percent at 480p.\n\n`input_video_seconds`\n\nsits inside the same parenthesis as the output. A reference-to-video job pays for the source clip at the same rate as the frames the model invented.\n\nProviders surface this as a discounted per-second rate for reference mode, which reads like a deal until you total it. Seedance 2.5's published range makes the point on its own: a five-second 720p generation costs $1.244 with a short reference and $4.838 with a 30-second one. Same output, 3.9× the bill.\n\n2.5 also doubled the input window, from 15 seconds on 2.0 to 30.\n\nThere is a floor too, and the number is unpublished. Their examples price two-second and four-second inputs identically, which implies a minimum around four seconds. The docs point at a spreadsheet calculator rather than stating it. If you resell this, customers sending two-second clips cost you more than your arithmetic predicts.\n\n``` js\nconst TOKENS_PER_SEC = {\n  '480p@2.5': 854 * 480 * 24 / 1024,   //   9,607\n  '480p@2.0': 864 * 496 * 24 / 1024,   //  10,044\n  '720p':    1280 * 720 * 24 / 1024,   //  21,600\n  '1080p':  1920 * 1080 * 24 / 1024,   //  48,600\n  '4k':     3840 * 2160 * 24 / 1024,   // 194,400\n};\n\nfunction costUsd({ tier, ratePerMillion, inputSec = 0, outputSec }) {\n  const tokens = (inputSec + outputSec) * TOKENS_PER_SEC[tier];\n  return (tokens * ratePerMillion) / 1e6;\n}\n\n// Sanity check against the vendor's own example:\ncostUsd({ tier: '720p', ratePerMillion: 7.0, outputSec: 5 }); // 0.756\n```\n\nThat last line matches ByteDance's published figure exactly, so the formula is not an approximation.\n\nOne caveat for anyone metering downstream: token counts are estimates until the job finishes. The formula predicted 40,176 for a config where the API returned 40,594, about 1% high. Bill on the returned `usage.completion_tokens`\n\n, not on your estimate.\n\nWhy 1080p and 4K have no published rate for 2.5. Either those tiers do not ship at launch or they arrive separately.\n\nThe exact minimum input duration. It exists and it is not a published number.\n\nWhether the same formula holds outside the Seedance family. Pixels × duration × fps is a plausible general shape, but the constants and the input-billing rule are not something I would assume for Veo, Kling or Sora without checking. If you have run the same back-solve against those, I would genuinely like to know how it came out.\n\nFull writeup with the Seedance 2.0 rate card in per-second and per-minute terms: [reapi.ai/blog/seedance-2-5-pricing-per-token](https://reapi.ai/blog/seedance-2-5-pricing-per-token)\n\nLive parameter reference and a browser playground: [reapi.ai/models/seedance-2-0](https://reapi.ai/models/seedance-2-0)", "url": "https://wpnews.pro/news/seedance-2-5-is-priced-53-above-2-0-per-token-and-its-480p-frame-shrank", "canonical_source": "https://dev.to/lee_315dd1e13420e63e2b813/seedance-25-is-priced-53-above-20-per-token-and-its-480p-frame-shrank-5fki", "published_at": "2026-08-05 03:55:51+00:00", "updated_at": "2026-08-05 04:14:50.026133+00:00", "lang": "en", "topics": ["artificial-intelligence", "generative-ai", "ai-products", "ai-infrastructure"], "entities": ["ByteDance", "Seedance 2.5", "Seedance 2.0"], "alternates": {"html": "https://wpnews.pro/news/seedance-2-5-is-priced-53-above-2-0-per-token-and-its-480p-frame-shrank", "markdown": "https://wpnews.pro/news/seedance-2-5-is-priced-53-above-2-0-per-token-and-its-480p-frame-shrank.md", "text": "https://wpnews.pro/news/seedance-2-5-is-priced-53-above-2-0-per-token-and-its-480p-frame-shrank.txt", "jsonld": "https://wpnews.pro/news/seedance-2-5-is-priced-53-above-2-0-per-token-and-its-480p-frame-shrank.jsonld"}}