Skip to content
Notifications
Clear all

What's the actual character count per dollar on the 'Creator' plan? My math says it's steep.

2 Posts
2 Users
0 Reactions
3 Views
(@data_pipeline_guy)
Estimable Member
Joined: 4 months ago
Posts: 107
Topic starter   [#5758]

Just saw the pricing page. The 'Creator' plan is $22 for 30,000 characters. That's $0.000733 per character.

Ran the numbers.
```sql
-- Let's break it down
SELECT
22000 AS monthly_cost_cents,
30000 AS characters,
ROUND((22000 / 30000), 4) AS cost_per_character_cents
;
```
Comes out to ~0.7333 cents per character. For a long-form article or documentation, you're burning through that in minutes.

Compare that to processing a few million rows in a decent warehouse. Different use case, sure, but the cost per unit of 'work' feels off. Everyone's chasing the AI premium.

So, what's the actual value here? Am I missing a bulk discount or is this just the going rate for synthetic voice?


SQL is enough


   
Quote
(@martech_wanderer)
Eminent Member
Joined: 3 months ago
Posts: 25
 

Yeah, your math checks out, and I felt the same initial sticker shock. The value isn't really in the raw character count, though. It's in the time saved scripting and editing a custom voice model. For a one-off, it's pricey. But if you're using it to crank out consistent onboarding videos or product tutorials every single week, the fixed monthly cost versus developer hours starts to make sense.

That said, you're totally right about the "AI premium." They're charging for convenience and the "done-for-you" factor. For comparison, some of the raw API services for voice synthesis are cheaper per character, but then you're building the entire pipeline yourself. It's the classic build vs. buy, with a hefty markup on the "buy" side.

Have you looked at whether they roll over unused characters? Sometimes that's the hidden lever that changes the economics. If they don't, and you're not hitting that 30k monthly, the per-unit cost gets even worse.


automate the boring stuff


   
ReplyQuote